/* ============================
   CROMA — STYLES v5
   Baseado na composição de camaleonhub.com/assessorias
   Paleta: Grafite #1A1A2E · Terracota #C45B3A · Areia #F5F0EB
   Fontes: Fraunces 400 (display) + Inter (corpo)
   ============================ */

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

:root {
  --grafite: #1A1A2E;
  --grafite-800: #252540;
  --grafite-700: #2E2E52;
  --terracota: #C45B3A;
  --terracota-dark: #A8482E;
  --terracota-light: rgba(196, 91, 58, 0.1);
  --terracota-light-50: rgba(196, 91, 58, 0.12);
  --terracota-light-100: rgba(196, 91, 58, 0.2);
  --areia: #F5F0EB;
  --areia-light: #FAF7F4;
  --areia-50: #FDFBF9;
  --branco: #FFFFFF;
  --borda: #D6CFC7;
  --off-white: #FDFAF8;
  --gray-50: #F8F6F4;
  --gray-100: #F0EDEA;
  --gray-200: #E0DBD6;
  --gray-300: #C8C2BB;
  --gray-400: #A09890;
  --gray-500: #787068;
  --gray-600: #585048;
  --gray-700: #3D3530;
  --gray-800: #2A2420;
  --gray-900: #1A1512;
  --erro: #C0392B;
  --sucesso: #27AE60;
  --tag-aluguel: #2D3A4A;
  --tag-compra: #C45B3A;
  --tag-investimento: #7A6443;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--off-white);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--grafite); line-height: 1.2; font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================
   FADE-UP
   ============================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================
   SECTION LABELS & HEADERS
   ============================ */
.section-label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracota); margin-bottom: 12px; display: block;
}
.section-label-light { color: rgba(196, 91, 58, 0.8); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-500); max-width: 600px;
  line-height: 1.7; font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.navbar.scrolled { padding: 12px 0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo {
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--grafite);
}
.logo-o { color: var(--terracota); }
.navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--grafite);
  transition: color var(--transition); position: relative;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--terracota);
  transition: width var(--transition);
}
.navbar-links a:hover { color: var(--grafite); }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--terracota);
  color: var(--branco) !important; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; transition: all var(--transition);
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover { background: var(--terracota-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--grafite); transition: all var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3);
  z-index: 998; opacity: 0; visibility: hidden; transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============================
   HERO
   ============================ */
.hero {
  padding: 60px 0 0; position: relative; overflow: hidden;
  background: linear-gradient(175deg, var(--grafite) 0%, var(--grafite-800) 60%, var(--grafite-700) 100%);
  min-height: 600px; margin-top: 68px;
}
.hero-compact { min-height: auto; padding: 60px 0 0; }
.hero-compact .container { padding-bottom: 80px; }
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-glow-1 {
  top: -30%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,91,58,0.12) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: -40%; left: -15%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,91,58,0.08) 0%, transparent 70%);
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2; padding-bottom: 100px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,91,58,0.15); color: var(--terracota);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero-badge svg { color: var(--terracota); }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 20px;
  line-height: 1.15; color: var(--branco);
}
.hero h1 span { color: var(--terracota); }
.hero-description {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  margin-bottom: 36px; max-width: 480px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero card */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: var(--branco); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-xl);
  position: relative; width: 100%; max-width: 380px;
}
.hero-card-icon { font-size: 3rem; margin-bottom: 16px; }
.hero-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.hero-card > p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; }
.hero-card-checks { display: flex; flex-direction: column; gap: 12px; }
.hero-check {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--areia-light);
  border-radius: var(--radius-sm); font-size: 0.88rem;
  font-weight: 500; color: var(--grafite);
}
.hero-check svg { color: var(--terracota); flex-shrink: 0; }
.hero-card-float {
  position: absolute; background: var(--branco);
  border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex;
  align-items: center; gap: 10px; font-size: 0.85rem;
  font-weight: 600; color: var(--grafite);
  animation: float 3s ease-in-out infinite;
}
.hero-card-float.top-right { top: -20px; right: -30px; }
.hero-card-float.bottom-left { bottom: -15px; left: -30px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--terracota);
  color: var(--branco); border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition);
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--terracota-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,91,58,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  color: var(--branco); border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px; font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition); cursor: pointer; font-family: var(--font-body);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  color: var(--grafite); border: 1.5px solid var(--borda);
  border-radius: 100px; font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition); cursor: pointer; font-family: var(--font-body);
}
.btn-outline:hover { border-color: var(--grafite); transform: translateY(-2px); }
.btn-card {
  font-size: 0.9rem; font-weight: 600; color: var(--terracota);
  transition: color var(--transition);
}
.btn-card:hover { color: var(--terracota-dark); }

/* ============================
   TRUST BAR
   ============================ */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--gray-100); background: var(--branco); }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--terracota-light-50); border-radius: var(--radius-sm);
  color: var(--grafite);
}
.trust-text { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); line-height: 1.4; }

/* ============================
   DOIS CAMINHOS
   ============================ */
.section-caminhos { padding: 100px 0; background: var(--areia-50); border-bottom: 1px solid var(--borda); }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.path-card {
  background: var(--branco); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--gray-200);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.path-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.path-card:first-child::before { background: var(--terracota); }
.path-card:last-child::before { background: var(--grafite); }
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.path-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.path-icon-aluguel { background: var(--terracota-light); color: var(--terracota); }
.path-icon-compra { background: rgba(26,26,46,0.08); color: var(--grafite); }
.path-card h3 { font-size: 1.15rem; margin: 0; }
.path-card > p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }
.path-card ul { margin-top: 12px; margin-bottom: 20px; }
.path-card ul li {
  font-size: 0.9rem; color: var(--gray-500); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.path-card ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.path-card:first-child ul li::before { background: var(--terracota); }
.path-card:last-child ul li::before { background: var(--grafite); }

/* ============================
   COMO FUNCIONA — STEPS
   ============================ */
.section-steps { padding: 100px 0; background: var(--branco); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--areia), var(--terracota), var(--grafite-700), var(--areia));
  z-index: 0;
}
.steps-grid-3 { grid-template-columns: repeat(3, 1fr); }
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--areia); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  transition: all var(--transition);
}
.step:hover .step-number { background: var(--grafite); transform: scale(1.05); }
.step:hover .step-number svg { color: var(--branco); }
.step-number svg { color: var(--grafite); transition: color var(--transition); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ============================
   PARA QUEM É
   ============================ */
.section-para-quem { padding: 100px 0; background: var(--areia-50); }
.check-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 800px; margin: 0 auto;
}
.check-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px; background: var(--branco);
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  font-size: 0.95rem; color: var(--gray-700); line-height: 1.5;
  transition: all var(--transition);
}
.check-card:hover { box-shadow: var(--shadow-md); border-color: var(--terracota); transform: translateY(-2px); }
.check-card svg { color: var(--terracota); flex-shrink: 0; margin-top: 2px; }

/* ============================
   FILTER BAR
   ============================ */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 12px; flex-wrap: wrap;
}
.filter-toggles {
  display: inline-flex; background: var(--gray-100);
  border-radius: 100px; padding: 4px; gap: 4px;
}
.filter-btn {
  padding: 10px 24px; border-radius: 100px; border: none;
  background: transparent; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600; color: var(--gray-500);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn.active { background: var(--branco); color: var(--grafite); box-shadow: var(--shadow-sm); }
.filter-btn:hover:not(.active) { color: var(--gray-700); }
.filter-select {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  padding: 10px 40px 10px 16px; border-radius: 100px;
  border: 1px solid var(--gray-200); background: var(--branco);
  color: var(--grafite); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color var(--transition);
}
.filter-select:focus { outline: none; border-color: var(--terracota); }
.filter-count { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 24px; }

/* ============================
   CATÁLOGO — PROPERTY CARDS
   ============================ */
.section-catalog { padding: 100px 0; background: var(--off-white); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.property-card {
  background: var(--branco); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--terracota); }
.property-card-link { display: block; color: inherit; text-decoration: none; }
.property-img {
  position: relative; height: 200px;
  display: flex; align-items: flex-end; padding: 16px; overflow: hidden;
}
.property-img-label {
  font-size: 0.8rem; font-weight: 500; color: var(--branco);
  background: rgba(26,26,46,0.55); padding: 5px 12px;
  border-radius: 100px; backdrop-filter: blur(4px);
  position: relative; z-index: 1;
}
.tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--branco);
  padding: 4px 12px; border-radius: 100px;
  backdrop-filter: blur(4px); z-index: 1;
}
.tag-aluguel, .tag-Aluguel { background: rgba(45,58,74,0.85); }
.tag-compra, .tag-Compra { background: rgba(196,91,58,0.85); }
.tag-investimento, .tag-Investimento { background: rgba(122,100,67,0.85); }
.demo-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.6rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--branco);
  background: rgba(26,26,46,0.45); padding: 4px 10px;
  border-radius: 100px; backdrop-filter: blur(4px); z-index: 1;
}
.demo-badge-inline {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gray-500); background: rgba(26,26,46,0.06);
  padding: 5px 12px; border-radius: 100px; margin-top: 16px;
}
.demo-bar { background: var(--areia); padding: 12px 0; text-align: center; }
.property-body { padding: 20px 24px; }
.property-type {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--terracota); margin-bottom: 6px; display: block;
}
.property-title { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.property-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--grafite); margin-bottom: 14px; }
.price-period { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--gray-400); }
.property-details { margin-bottom: 16px; }
.property-details li {
  font-size: 0.85rem; color: var(--gray-500); padding: 3px 0 3px 16px;
  position: relative; line-height: 1.5;
}
.property-details li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracota); opacity: 0.4;
}
.catalog-cta { text-align: center; margin-top: 56px; }
.catalog-cta p { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 20px; color: var(--grafite); }

/* ============================
   SOBRE
   ============================ */
.section-about {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--grafite) 0%, var(--grafite-800) 50%, var(--grafite-700) 100%);
}
.about-content { max-width: 640px; margin: 0 auto; text-align: center; }
.about-content p {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,0.7); margin-bottom: 16px;
}
.about-content p:last-child { margin-bottom: 0; }

/* ============================
   PARCEIRA — IVONE
   ============================ */
.section-partner { padding: 100px 0; background: var(--areia-50); }
.partner-card {
  display: flex; align-items: flex-start; gap: 28px;
  max-width: 640px; margin: 0 auto;
  background: var(--branco); border-radius: var(--radius-xl);
  padding: 36px 32px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.partner-avatar {
  min-width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
  color: var(--branco); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; font-weight: 700;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(196,91,58,0.25);
}
.partner-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.partner-role { font-size: 0.85rem; color: var(--terracota); font-weight: 500; margin-bottom: 14px; }
.partner-bio { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* ============================
   FORMULÁRIO
   ============================ */
.section-form { padding: 100px 0; background: var(--branco); }
.lead-form {
  max-width: 640px; margin: 0 auto;
  background: var(--areia-50); border-radius: var(--radius-xl);
  padding: 40px 36px; border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 8px; color: var(--grafite);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem;
  padding: 14px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); background: var(--branco);
  color: var(--grafite); transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--terracota);
  box-shadow: 0 0 0 3px rgba(196,91,58,0.1);
}
.form-group input.error, .form-group select.error {
  border-color: var(--erro); box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.form-error { display: block; font-size: 0.8rem; color: var(--erro); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; font-size: 1rem; margin-top: 8px; justify-content: center; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--sucesso); color: var(--branco);
  font-size: 1.6rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px; box-shadow: 0 4px 16px rgba(39,174,96,0.25);
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 10px; }
.form-success p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.6; }

/* ============================
   CTA FINAL
   ============================ */
.cta-final {
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--grafite) 0%, var(--grafite-800) 50%, var(--grafite-700) 100%);
}
.cta-final h2 { color: var(--branco); font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
.cta-final p {
  color: rgba(255,255,255,0.65); font-size: 1.05rem;
  margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ============================
   PARCEIROS — BENEFITS
   ============================ */
.section-benefits { padding: 100px 0; background: var(--areia-50); border-bottom: 1px solid var(--borda); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.benefit-card {
  background: var(--branco); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--gray-200);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.benefit-card:nth-child(1)::before { background: var(--terracota); }
.benefit-card:nth-child(2)::before { background: var(--grafite); }
.benefit-card:nth-child(3)::before { background: var(--terracota); }
.benefit-card:nth-child(4)::before { background: var(--grafite); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-icon-1 { background: var(--terracota-light); color: var(--terracota); }
.benefit-icon-2 { background: rgba(26,26,46,0.08); color: var(--grafite); }
.benefit-icon-3 { background: var(--terracota-light-100); color: var(--terracota); }
.benefit-card h3 { font-size: 1.1rem; margin: 0; }
.benefit-card > p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* ============================
   PÁGINA DO IMÓVEL
   ============================ */
.imovel-page { padding-top: 100px; padding-bottom: 80px; min-height: 60vh; }
.imovel-loading { text-align: center; padding: 80px 0; color: var(--gray-400); }
.imovel-breadcrumb {
  font-size: 0.85rem; color: var(--gray-400); margin-bottom: 32px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.imovel-breadcrumb a { color: var(--terracota); transition: color 0.2s; }
.imovel-breadcrumb a:hover { color: var(--terracota-dark); }
.imovel-breadcrumb .bc-sep { color: var(--gray-300); }
.imovel-gallery {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  height: 280px; display: flex; align-items: flex-end; padding: 20px;
}
.imovel-gallery .tag { top: 20px; left: 20px; }
.imovel-gallery .demo-badge { top: 20px; right: 20px; }
.imovel-layout { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
.imovel-tag-row { margin-bottom: 12px; }
.imovel-tag-inline {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--branco); padding: 5px 14px; border-radius: 100px;
}
.imovel-titulo { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 8px; }
.imovel-localizacao { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 20px; }
.imovel-preco { font-family: var(--font-display); font-size: 2rem; color: var(--grafite); margin-bottom: 32px; }
.imovel-preco .price-period { font-family: var(--font-body); font-size: 1rem; }
.imovel-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; }
.spec-item {
  background: var(--areia-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 16px 20px; text-align: center;
}
.spec-value { font-family: var(--font-display); font-size: 1.3rem; color: var(--grafite); display: block; margin-bottom: 4px; }
.spec-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); }
.imovel-section { margin-bottom: 36px; }
.imovel-section-title { font-size: 1.2rem; margin-bottom: 12px; }
.imovel-descricao { font-size: 1rem; line-height: 1.8; color: var(--gray-500); }
.imovel-destaques { display: flex; flex-direction: column; gap: 10px; }
.imovel-destaques li {
  font-size: 0.95rem; color: var(--grafite); padding-left: 28px;
  position: relative; line-height: 1.5;
}
.imovel-destaques li::before { content: "✓"; position: absolute; left: 0; color: var(--terracota); font-weight: 700; }
.imovel-bairro {
  font-size: 0.95rem; line-height: 1.8; color: var(--gray-500);
  background: var(--areia-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 20px 24px;
}
.imovel-demo-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gray-500); background: rgba(26,26,46,0.06);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 32px;
}
.imovel-cta-card {
  background: var(--areia-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px 28px;
  box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.imovel-cta-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.imovel-cta-card > p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }
.imovel-cta-card .btn-primary, .imovel-cta-card .btn-outline { width: 100%; justify-content: center; margin-bottom: 12px; text-align: center; }
.imovel-cta-card .btn-outline { margin-bottom: 0; }
.imovel-parceiro {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray-200);
}
.imovel-parceiro-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
  color: var(--branco); display: flex; align-items: center;
  justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}
.imovel-parceiro-info { font-size: 0.88rem; }
.imovel-parceiro-info strong { display: block; font-weight: 600; color: var(--grafite); }
.imovel-parceiro-info span { color: var(--gray-400); font-size: 0.82rem; }
.imovel-not-found { text-align: center; padding: 80px 0; }
.imovel-not-found h2 { font-size: 1.8rem; margin-bottom: 16px; }
.imovel-not-found p { font-size: 1rem; color: var(--gray-500); margin-bottom: 32px; }

/* ============================
   FOOTER
   ============================ */
.footer { padding: 60px 0 30px; background: var(--gray-900); color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand-logo {
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--branco); margin-bottom: 12px;
}
.footer-brand-logo .logo-o { color: var(--terracota); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  color: var(--branco); font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-col ul a { transition: color var(--transition); }
.footer-col ul a:hover { color: var(--terracota); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; font-size: 0.8rem;
}

/* ============================
   RESPONSIVE — ≤ 900px
   ============================ */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-card-float { display: none; }
}

/* ============================
   RESPONSIVE — ≤ 768px
   ============================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--grafite); flex-direction: column;
    padding: 100px 32px 32px; gap: 24px;
    box-shadow: var(--shadow-xl); transition: right var(--transition);
    z-index: 999;
  }
  .navbar-links.open { right: 0; }
  .navbar-links a { color: rgba(255,255,255,0.85); }
  .navbar-links a:hover { color: #fff; }
  .navbar-links a::after { background: var(--terracota); }
  .navbar-cta { background: var(--terracota); color: #fff !important; }

  .hero { min-height: auto; }
  .hero .container { padding-bottom: 60px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 3rem); }

  .trust-bar .container { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-icon { width: 36px; height: 36px; }
  .trust-text { font-size: 0.8rem; }

  .section-caminhos, .section-steps, .section-para-quem,
  .section-catalog, .section-about, .section-partner,
  .section-form, .section-benefits { padding: 60px 0; }

  .paths-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .steps-grid-3 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
  .lead-form { padding: 28px 20px; }
  .btn-submit { width: 100%; }

  .imovel-specs { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-bottom { text-align: center; }

  .partner-card { flex-direction: column; align-items: center; text-align: center; }
  .cta-final { padding: 60px 0; }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .property-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .imovel-gallery { height: 400px; }
  .imovel-layout { grid-template-columns: 1fr 360px; gap: 48px; }
  .imovel-specs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .trust-bar .container { grid-template-columns: 1fr; gap: 12px; }
  .hero-card { padding: 24px; }
  .filter-toggles { flex-wrap: wrap; }
}
