/* ==========================================================================
   TATIANA COLOMBO CONSULTORIA IMOBILIÁRIA - SISTEMA DE DESIGN PREMIUM
   ========================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  /* ── Cores extraídas da logo TC ── */
  --brand-pink:        #D2526E;   /* rosa principal da logo */
  --brand-pink-dark:   #B3465D;   /* hover / escuro */
  --brand-pink-deep:   #8C3348;   /* deep / links */
  --brand-pink-pale:   #F5D5DC;   /* fundo suave rosa */

  --brand-slate:       #484C55;   /* círculo da logo */
  --brand-slate-dark:  #32353B;   /* mais escuro / footer */
  --brand-slate-light: #5B5F69;   /* mais claro */

  /* ── Aliases semânticos ── */
  --rose:       var(--brand-pink);
  --rose-dark:  var(--brand-pink-dark);
  --rose-deep:  var(--brand-pink-deep);
  --charcoal:   var(--brand-slate-dark);

  /* ── Neutros ── */
  --cream:      #FAF7F5;
  --cream2:     #F2EBE8;
  --cream3:     #E5D8D4;
  --taupe:      #9A8E8E;
  --text:       #2E2828;
  --text2:      #6E5E5E;
  --text3:      #B0A0A0;
  --white:      #FFFCFB;

  /* ── Efeitos & Transições Premium ── */
  --shadow-sm: 0 4px 12px rgba(72, 76, 85, 0.04);
  --shadow-md: 0 10px 30px rgba(72, 76, 85, 0.08);
  --shadow-lg: 0 20px 48px rgba(58, 48, 40, 0.08);
  --shadow-premium: 0 30px 60px rgba(58, 48, 40, 0.14);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: var(--transition-fast);
}

ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ===== SKIP LINK (acessibilidade) ===== */
.skip-link {
  position: absolute;
  top: -9999px; left: -9999px;
  background: var(--rose);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: var(--transition-fast);
}
.skip-link:focus { top: 0; left: 50%; transform: translateX(-50%); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 247, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 154, 0.15);
  transition: var(--transition-smooth);
}
.nav.scrolled { 
  padding: 0.9rem 3rem;
  background: rgba(250, 247, 245, 0.96);
  box-shadow: var(--shadow-md); 
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-brand:hover img {
  transform: rotate(360deg);
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.06em;
  line-height: 1.1;
}
.nav-brand-sub {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe); display: block;
}

.nav-links {
  display: flex; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text2);
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--rose);
  transform: scaleX(0); 
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { 
  color: var(--rose-dark); 
}
.nav-links a:hover::after { 
  transform: scaleX(1); 
  transform-origin: left;
}

.nav-cta {
  display: inline-block;
  background: var(--rose); color: var(--white);
  padding: 0.7rem 1.6rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  min-height: 44px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.nav-cta:hover, .nav-cta:focus { 
  background: var(--rose-dark); 
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--charcoal);
  min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle:hover { color: var(--rose); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero:hover .hero-bg {
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(50,53,59,0.30) 0%,
    rgba(50,53,59,0.25) 45%,
    rgba(50,53,59,0.78) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 3rem 6rem;
  max-width: 720px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--rose-pale);
  margin-bottom: 1.5rem;
}
.hero-kicker::before { 
  content: ''; 
  width: 32px; 
  height: 1px; 
  background: var(--rose); 
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em { 
  font-style: italic; 
  color: var(--rose-pale); 
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,252,248,0.85);
  max-width: 500px; line-height: 1.85;
  margin-bottom: 2.8rem;
}

.hero-btns {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--rose); color: var(--white);
  padding: 1rem 2.4rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  min-height: 44px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.btn-primary:hover, .btn-primary:focus { 
  background: var(--rose-dark); 
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 1rem 2.4rem;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,252,248,0.4);
  cursor: pointer;
  min-height: 44px;
  transition: var(--transition-smooth);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--white); 
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-badge {
  position: absolute; bottom: 3rem; right: 3rem; z-index: 2;
  background: rgba(250, 247, 245, 0.90);
  backdrop-filter: blur(12px);
  padding: 1.2rem 1.8rem;
  border-left: 3px solid var(--rose);
  text-align: right;
  box-shadow: var(--shadow-md);
}
.hero-badge-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.hero-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--charcoal);
  display: block; margin-top: 2px;
}

/* ===== SEARCH BAR ===== */
.search-section { 
  background: var(--brand-slate-dark); 
  padding: 2.5rem 3rem; 
  box-shadow: inset 0 10px 30px rgba(0,0,0,0.15);
}
.search-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 1.25rem; align-items: end;
}
.search-group label {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose-pale);
  margin-bottom: 0.5rem;
}
.search-group select,
.search-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream);
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
  appearance: none; -webkit-appearance: none;
  outline: none;
  transition: var(--transition-fast);
  min-height: 44px;
}
.search-group select option { background: var(--charcoal); }
.search-group select:focus,
.search-group input:focus { 
  border-color: var(--rose); 
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(210, 82, 110, 0.25);
}
.search-group input::placeholder { color: rgba(255,255,255,0.35); }
.search-btn {
  background: var(--rose); color: var(--white);
  padding: 0.8rem 2.2rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  min-height: 44px;
  box-shadow: var(--shadow-sm);
}
.search-btn:hover, .search-btn:focus { 
  background: var(--rose-dark); 
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== SECTIONS SHARED ===== */
.section { padding: 7rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-size: 0.65rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--rose-dark);
  display: block; margin-bottom: 0.8rem;
  font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300; color: var(--charcoal);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--rose-dark); font-weight: 400; }
.section-desc {
  color: var(--text2); font-size: 0.95rem;
  max-width: 520px; margin-top: 1rem;
  line-height: 1.85; font-weight: 300;
}

/* ===== IMÓVEIS ===== */
.imoveis { background: var(--cream); }
.imoveis-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4.5rem;
}
.btn-outline-dark {
  display: inline-block;
  background: transparent; color: var(--charcoal);
  padding: 0.8rem 2rem;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--rose);
  transition: var(--transition-smooth); 
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background: var(--rose); color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.imovel-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(201, 168, 154, 0.1);
  display: flex;
  flex-direction: column;
}
.imovel-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-premium);
  border-color: rgba(210, 82, 110, 0.2);
}
.imovel-card:focus-within { 
  outline: 2px solid var(--rose); 
  transform: translateY(-8px);
}

.imovel-img-wrap { 
  position: relative; 
  overflow: hidden; 
  background: #32353b;
  width: 100%;
}
.imovel-gallery-slider {
  width: 100%;
  overflow: hidden;
}
.imovel-gallery-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.imovel-gallery-track .imovel-img {
  width: 100%;
  flex-shrink: 0;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}
.imovel-card:hover .imovel-gallery-track .imovel-img { 
  transform: scale(1.04); 
}
.imovel-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250, 247, 245, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 154, 0.2);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: var(--transition-fast);
  padding: 0;
}
.imovel-slider-btn svg {
  width: 20px;
  height: 20px;
}
.imovel-slider-btn.prev { left: 12px; }
.imovel-slider-btn.next { right: 12px; }
.imovel-img-wrap:hover .imovel-slider-btn {
  opacity: 1;
}
.imovel-slider-btn:hover, .imovel-slider-btn:focus {
  background: var(--white);
  color: var(--rose);
  box-shadow: var(--shadow-md);
  outline: none;
}
.imovel-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.imovel-slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
  cursor: pointer;
}
.imovel-slider-dots .dot.active {
  background: var(--white);
  width: 14px;
  border-radius: 3px;
}

.imovel-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--rose); color: var(--white);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px;
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.imovel-body { 
  padding: 1.6rem 1.8rem 2rem; 
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.imovel-tipo {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rose-dark);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.imovel-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.4rem;
  line-height: 1.25;
  transition: color 0.3s;
}
.imovel-card:hover .imovel-nome {
  color: var(--rose-dark);
}
.imovel-loc { font-size: 0.82rem; color: var(--text2); margin-bottom: 1.2rem; }
.imovel-sep { height: 1px; background: var(--cream3); margin: 1.2rem 0; }
.imovel-features {
  display: flex; gap: 1.4rem;
  font-size: 0.78rem; color: var(--text2);
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.imovel-preco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--rose-dark);
  margin-top: auto;
}
.imovel-preco small {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; color: var(--text3); font-weight: 300;
}
.imovel-link {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose-dark);
  border-bottom: 1px solid rgba(210, 82, 110, 0.4);
  padding-bottom: 3px; 
  transition: var(--transition-fast);
  width: max-content;
}
.imovel-link:hover { 
  color: var(--rose-deep); 
  border-bottom-color: var(--rose-deep);
  padding-left: 4px;
}

/* ===== MARQUEE / BANNER ===== */
.marquee-section { 
  background: var(--rose); 
  padding: 1.4rem 0; 
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(210, 82, 110, 0.2);
}
.marquee-track {
  display: flex; gap: 3.5rem;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 400;
  color: var(--white); letter-spacing: 0.05em;
  white-space: nowrap;
}
.marquee-dot { color: rgba(255,252,248,0.5); }

/* ===== DIFERENCIAIS ===== */
.diferenciais { background: var(--white); }
.dif-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.dif-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.dif-item { 
  padding: 1.8rem; 
  border: 1px solid var(--cream3); 
  transition: var(--transition-smooth); 
}
.dif-item:hover { 
  border-color: var(--rose); 
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.dif-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.dif-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.dif-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.75; font-weight: 300; }

.dif-right { position: relative; }
.dif-portrait {
  width: 100%; height: 540px;
  object-fit: cover; object-position: top;
  display: block;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 168, 154, 0.15);
}
.dif-portrait-placeholder {
  width: 100%; height: 540px;
  background: linear-gradient(160deg, #d8ccbc, #c8b0a0, #b89880);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(122,74,58,0.4);
  box-shadow: var(--shadow-lg);
}
.dif-badge-box {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--rose); color: var(--white);
  padding: 1.6rem 2.2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dif-badge-box:hover {
  transform: scale(1.05) translateY(-3px);
}
.dif-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 500;
  display: block; line-height: 1;
}
.dif-badge-label {
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.9;
  margin-top: 6px; display: block;
}

/* ===== SOBRE / STATS ===== */
.sobre { 
  background: var(--charcoal); 
  padding: 7rem 3rem; 
  position: relative;
  overflow: hidden;
}
.sobre-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sobre-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 300; color: var(--cream);
  margin-bottom: 1.2rem; line-height: 1.35;
}
.sobre-desc {
  color: rgba(240,234,224,0.65); font-size: 0.95rem;
  font-weight: 300; max-width: 600px;
  margin: 0 auto 4rem; line-height: 1.9;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 500; color: var(--rose);
  line-height: 1; display: block;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--taupe);
  margin-top: 10px; display: block;
}
.sobre-cta { margin-top: 4.5rem; }

/* ===== KENLO ===== */
.kenlo { background: var(--cream2); padding: 6rem 3rem; }
.kenlo-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 5rem; align-items: center;
}
.kenlo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 400;
  color: var(--charcoal); margin: 0.8rem 0 1.2rem;
}
.kenlo-desc {
  font-size: 0.92rem; color: var(--text2);
  line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem;
}
.kenlo-features { display: flex; flex-direction: column; gap: 0.8rem; }
.kenlo-features li {
  font-size: 0.85rem; color: var(--text2);
  display: flex; align-items: center; gap: 12px;
}
.kenlo-features li::before { 
  content: ''; 
  width: 20px; 
  height: 1px; 
  background: var(--rose); 
  flex-shrink: 0; 
}
.kenlo-right {
  text-align: center;
  border-left: 1px solid var(--cream3);
  padding-left: 5rem;
}
.kenlo-logo-box {
  width: 130px; height: 130px;
  background: var(--white); border: 1px solid var(--cream3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--rose-dark); letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.kenlo-logo-box:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: var(--shadow-md);
}
.kenlo-right p {
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--taupe);
  line-height: 1.8;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos { 
  background: var(--charcoal); 
  padding: 7rem 3rem; 
}
.dep-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.dep-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem; 
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}
.dep-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(210, 82, 110, 0.3);
  transform: translateY(-4px);
}
.dep-stars { color: var(--rose); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1.4rem; }
.dep-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: rgba(248, 244, 239, 0.75);
  line-height: 1.9; margin-bottom: 1.8rem;
}
.dep-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dep-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 500; color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.dep-name { font-size: 0.88rem; font-weight: 500; color: var(--cream); }
.dep-role { font-size: 0.72rem; color: var(--taupe); }

/* ===== CONTATO ===== */
.contato { background: var(--cream); padding: 7rem 3rem; }
.contato-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start;
}
.contato-info .section-desc { margin-bottom: 3rem; }
.info-items { display: flex; flex-direction: column; gap: 1.6rem; }
.info-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  background: var(--rose); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.info-item:hover .info-icon {
  transform: scale(1.1) rotate(-8deg);
  background: var(--rose-dark);
}
.info-text strong {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose-dark);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.info-text span { font-size: 0.9rem; color: var(--text2); }
.info-text a { color: var(--rose-dark); transition: var(--transition-fast); }
.info-text a:hover { color: var(--rose-deep); }

.contato-form {
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 1.4rem;
  border: 1px solid rgba(201, 168, 154, 0.1);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose-dark);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--cream3);
  color: var(--text); padding: 0.8rem 1.2rem;
  font-size: 0.88rem; outline: none;
  transition: var(--transition-fast);
  resize: none; min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(210, 82, 110, 0.2);
}
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-submit {
  background: var(--rose); color: var(--white);
  padding: 1.1rem 2rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 44px;
  box-shadow: var(--shadow-sm);
}
.form-submit:hover, .form-submit:focus { 
  background: var(--rose-dark); 
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
footer { 
  background: var(--charcoal); 
  padding: 5rem 3rem 2.5rem; 
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand-block .fl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--cream); letter-spacing: 0.05em;
}
.footer-brand-block .fsub {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--taupe);
  display: block; margin-bottom: 1.4rem;
}
.footer-brand-block p {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(240,234,224,0.5);
  line-height: 1.8; max-width: 280px;
}
.footer-powered {
  margin-top: 1.8rem;
  font-size: 0.65rem; color: var(--taupe); letter-spacing: 0.08em;
}
.footer-powered a { color: var(--rose); transition: var(--transition-fast); }
.footer-powered a:hover { color: var(--rose-dark); }

.footer-col h2.h4 {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  color: rgba(240,234,224,0.45);
  font-size: 0.85rem; font-weight: 300;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--rose); padding-left: 3px; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.25rem;
  font-size: 0.75rem; color: rgba(240, 234, 224, 0.3);
}
.footer-bottom a { color: rgba(240, 234, 224, 0.5); }
.footer-bottom a:hover { color: var(--rose); }

/* ===== WHATSAPP CONCIERGE WIDGET ===== */
.concierge-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
}
.whatsapp-float-trigger {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  border: none;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition-smooth);
  padding: 0;
  outline: none;
}
.whatsapp-float-trigger:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}
.whatsapp-float-trigger svg { width: 28px; height: 28px; fill: #fff; }

.concierge-card {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 320px;
  background: rgba(250, 247, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 154, 0.25);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}
.concierge-card.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.concierge-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.concierge-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.concierge-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
}
.concierge-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--rose);
}
.concierge-avatar-wrap .online-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
}
.concierge-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.1;
}
.concierge-status {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-top: 2px;
}
.concierge-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}
.concierge-close:hover {
  color: var(--white);
}
.concierge-body {
  padding: 1.5rem;
}
.concierge-msg {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  background: var(--white);
  padding: 12px;
  border-radius: 8px;
  border-left: 2px solid var(--rose);
  box-shadow: var(--shadow-sm);
}
.concierge-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.concierge-opt {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream3);
  color: var(--charcoal);
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 500;
  outline: none;
}
.concierge-opt:hover, .concierge-opt:focus {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

/* ===== FOCUS STYLES (acessibilidade) ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* ===== SCROLL REVEAL (Micro-animações de rolagem) ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { padding: 1.2rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }
  .imoveis-grid { grid-template-columns: 1fr 1fr; }
  .dif-inner { gap: 3rem; }
  .kenlo-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-brand img { width: 56px; height: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(250, 247, 245, 0.98);
    padding: 2.5rem 2rem 3.5rem;
    gap: 1.8rem; z-index: 99;
    border-bottom: 1px solid var(--cream3);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open + .nav-cta { 
    display: block; 
    position: fixed; 
    bottom: 1.5rem; left: 1.5rem; right: 1.5rem; 
    text-align: center; z-index: 99; 
  }

  .hero-content { padding: 0 1.5rem 5rem; }
  .hero-badge { display: none; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; max-width: 320px; }

  .search-inner { grid-template-columns: 1fr; }
  .search-section { padding: 1.8rem 1.5rem; }

  .section { padding: 5rem 1.5rem; }

  .imoveis-grid { grid-template-columns: 1fr; }
  .imoveis-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .dif-inner { grid-template-columns: 1fr; }
  .dif-right { display: none; }

  .dep-grid { grid-template-columns: 1fr; }

  .contato-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .contato-form { padding: 2rem; }

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

  .kenlo-inner { grid-template-columns: 1fr; }
  .kenlo-right { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; }
}

/* ===== PRINT ===== */
@media print {
  .nav, .whatsapp-float, .marquee-section, .search-section { display: none; }
  .hero { min-height: auto; page-break-after: always; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   TATIANA COLOMBO CONSULTORIA IMOBILIÁRIA - ESTILOS ADICIONAIS MULTI-PÁGINAS
   ========================================================================== */

/* 1. Page Header (Catalog & Owner) */
.page-header {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
}
.page-header-content {
  max-width: 800px;
  z-index: 2;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin: 1rem 0 1.5rem 0;
  letter-spacing: -1px;
}
.page-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.page-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 2. Catalog Section (imoveis.html) */
.catalog-section {
  padding: 5rem var(--site-padding);
  background: var(--bg-cream);
}
.catalog-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.filter-panel {
  background: var(--white);
  border: 1px solid var(--cream3);
  padding: 2.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
  z-index: 10;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream3);
}
.filter-header h2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-clear-filters {
  background: none;
  border: none;
  color: var(--rose-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}
.btn-clear-filters:hover {
  color: var(--rose);
  text-decoration: underline;
}
.filter-group {
  margin-bottom: 1.8rem;
}
.filter-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-group input[type="text"],
.filter-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream3);
  background: var(--white);
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: var(--transition-fast);
  outline: none;
}
.filter-group input[type="text"]:focus,
.filter-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(210, 82, 110, 0.1);
}
.range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.range-inputs input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--cream3);
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-fast);
}
.range-inputs input:focus {
  border-color: var(--rose);
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  cursor: pointer;
  text-transform: none !important;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--rose);
  cursor: pointer;
}

.results-meta {
  margin-bottom: 2rem;
}
.results-count {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--neutral-muted);
}
.no-results {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream3);
  margin-top: 2rem;
}
.no-results-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.no-results h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}
.no-results p {
  color: var(--neutral-muted);
  max-width: 500px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* 3. Property Details Page (detalhes.html) */
.detalhe-imovel-container {
  background: var(--bg-cream);
  padding: 6rem 0;
}
.detalhe-gallery-wrapper {
  max-width: 1400px;
  margin: 0 auto 4rem auto;
  padding: 0 var(--site-padding);
}
.detalhe-gallery-slider {
  position: relative;
  height: 70vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--neutral-dark);
}
.detalhe-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.detalhe-gallery-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.detalhe-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  z-index: 10;
}
.detalhe-slider-btn:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}
.detalhe-slider-btn.prev { left: 24px; }
.detalhe-slider-btn.next { right: 24px; }
.detalhe-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.detalhe-slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}
.detalhe-slider-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.detalhe-body-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--site-padding);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
}
.detalhe-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--cream3);
  box-shadow: var(--shadow-sm);
}
.detalhe-header-block {
  margin-bottom: 2.5rem;
}
.detalhe-kicker {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose-dark);
}
.detalhe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--neutral-dark);
  margin: 0.5rem 0 1rem 0;
}
.detalhe-bairro {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--neutral-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.detalhe-preco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--rose-dark);
  font-weight: 500;
  margin-top: 1.5rem;
}
.detalhe-preco small {
  font-size: 1.1rem;
  font-family: 'Jost', sans-serif;
  color: var(--neutral-muted);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--cream3);
  border-bottom: 1px solid var(--cream3);
}
.spec-box {
  text-align: center;
}
.spec-box span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.spec-value {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}
.spec-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--neutral-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.detalhe-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--neutral-dark);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--cream3);
  padding-bottom: 0.5rem;
}
.detalhe-desc {
  font-family: 'Jost', sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 3.5rem;
  text-align: justify;
}

.diferenciais-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3.5rem;
}
.dif-chip {
  background: var(--bg-cream);
  border: 1px solid var(--cream3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detalhe-sidebar-card {
  background: var(--white);
  border: 1px solid var(--cream3);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.sidebar-action-btn {
  width: 100%;
  margin-top: 1.5rem;
}
.btn-print-brochure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: 1px solid var(--cream3);
  color: var(--charcoal);
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  margin-top: 1rem;
}
.btn-print-brochure:hover {
  background: var(--bg-cream);
  border-color: var(--charcoal);
}

/* 4. Owner / Anuncie Page (anuncie.html) */
.differentials-owner {
  background: var(--white);
  padding: 6rem var(--site-padding);
}
.owner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.benefit-item {
  background: var(--bg-cream);
  border: 1px solid var(--cream3);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: var(--transition-slow);
}
.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.benefit-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--neutral-dark);
  margin-bottom: 0.8rem;
}
.benefit-item p {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--neutral-muted);
}
.owner-cta-box {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--cream3);
  padding: 2rem;
  border-radius: 10px;
}
.owner-cta-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}
.owner-cta-box p {
  font-size: 0.88rem;
  color: var(--neutral-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* 5. Print Media (High-end PDF Brochure styling) */
@media print {
  body {
    background: #fff !important;
    color: #1a1a1a !important;
    font-size: 11pt !important;
  }
  .no-print,
  header,
  footer,
  .concierge-wrapper,
  .btn-print-brochure,
  .nav-cta,
  .form-submit,
  #contact-form,
  .detalhe-sidebar-card form,
  .sidebar-title,
  .detalhe-slider-btn,
  .detalhe-slider-dots {
    display: none !important;
  }
  
  .detalhe-imovel-container {
    padding: 0 !important;
    background: none !important;
  }
  
  .detalhe-gallery-wrapper {
    padding: 0 !important;
    margin-bottom: 2cm !important;
    max-width: 100% !important;
    page-break-after: always !important; /* Forces hero image onto page 1 */
  }
  
  .detalhe-gallery-slider {
    height: 12cm !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .detalhe-gallery-track {
    transform: none !important;
    display: block !important;
  }

  .detalhe-gallery-img {
    display: none !important;
  }

  /* Force the first image to be visible on print */
  .detalhe-gallery-img:first-child {
    display: block !important;
    width: 100% !important;
    height: 12cm !important;
    object-fit: cover !important;
  }
  
  .detalhe-body-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  .detalhe-content {
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  
  .detalhe-title {
    font-size: 32pt !important;
  }
  
  .detalhe-preco {
    font-size: 24pt !important;
    color: #000 !important;
  }

  .specs-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    border-top: 1pt solid #ccc !important;
    border-bottom: 1pt solid #ccc !important;
    margin: 1.5cm 0 !important;
    padding: 0.8cm 0 !important;
  }

  .spec-box span {
    font-size: 16pt !important;
  }

  .spec-value {
    font-size: 11pt !important;
  }

  .spec-label {
    font-size: 8pt !important;
  }
  
  .detalhe-desc {
    font-size: 11pt !important;
    line-height: 1.6 !important;
  }

  .diferenciais-list {
    margin-top: 1cm !important;
  }

  .dif-chip {
    border: 1px solid #999 !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 9pt !important;
    padding: 0.3rem 0.8rem !important;
  }

  /* Sticky sidebar card converted into a printed brochure note */
  .detalhe-sidebar-card {
    border: 1pt solid #999 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 1.5cm !important;
    margin-top: 2cm !important;
    page-break-inside: avoid !important;
  }

  .detalhe-sidebar-card::before {
    content: "CONSULTORIA EXCLUSIVA" !important;
    display: block !important;
    font-size: 10pt !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.5cm !important;
    color: #555 !important;
  }

  .detalhe-sidebar-card::after {
    content: "\n\nPara agendar uma visita privada ou obter mais detalhes, entre em contato:\nWhatsApp: +55 (19) 97413-9848\nWebsite: www.tatianacolomboimoveis.com.br\nCRECI 30359-J" !important;
    display: block !important;
    white-space: pre-wrap !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
  }
}

/* 6. Media Queries responsive corrections */
@media (max-width: 1200px) {
  .detalhe-body-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .detalhe-sidebar-card {
    position: static;
  }
}

@media (max-width: 1024px) {
  .catalog-container {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    position: static;
    margin-bottom: 2rem;
  }
  .owner-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .detalhe-content {
    padding: 1.5rem;
  }
  .detalhe-title {
    font-size: 2.2rem;
  }
  .owner-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SEÇÃO EDITORIAL CLÁSSICA (PORTAL PREMIUM) ===== */
.editorial-quote {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
  background-color: var(--charcoal);
  color: var(--white);
}

.editorial-quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.editorial-quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s ease;
}

.editorial-quote:hover .editorial-quote-bg img {
  transform: scale(1.05);
}

.editorial-quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(50, 53, 59, 0.6) 0%, rgba(30, 33, 37, 0.85) 100%);
  z-index: 2;
}

.editorial-quote-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.editorial-quote-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--white);
}

.editorial-quote-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-top: 1rem;
}

.editorial-quote-desc {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 auto 3rem auto;
  max-width: 650px;
  color: var(--cream2);
}

.editorial-quote-btn-wrap {
  display: flex;
  justify-content: center;
}


