/*
Theme Name: BrokerPrime - Imóveis & Embarcações
Theme URI: https://brokerprime.com.br
Author: BrokerPrime
Description: Tema ultra-premium para corretores de imóveis e embarcações. Design arquitetônico, minimalista e sofisticado com interface app-like.
Version: 3.0.0 (Luxe Dribbble Edition)
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — BROKERPRIME LUXURY SYSTEM
   ============================================================ */
:root {
  /* Brand Colors - Paleta mais profunda e sóbria */
  --bp-navy:        #050A11; 
  --bp-navy-light:  #0C1622;
  --bp-gold:        #B89A58; 
  --bp-gold-light:  #D4B97C;
  --bp-gold-dark:   #8E753D;
  --bp-cream:       #F9F7F2; 
  --bp-white:       #FFFFFF;
  --bp-gray-50:     #FCFBFA;
  --bp-gray-100:    #F2EFE9;
  --bp-gray-200:    #E0DBD2;
  --bp-gray-400:    #948E84;
  --bp-gray-600:    #5A554E;
  --bp-gray-800:    #1F1D1A;

  /* Status Colors */
  --bp-venda:       #154D2B;
  --bp-aluguel:     #123652;
  --bp-temporada:   #522D12;
  --bp-lancamento:  #3D122D;

  /* Typography */
  --font-display:   'Playfair Display', 'Didot', 'Georgia', serif;
  --font-body:      'Lato', 'Helvetica Neue', sans-serif;
  --font-mono:      'DM Mono', monospace;

  /* Spacing */
  --space-xs:   6px;
  --space-sm:   12px;
  --space-md:   24px;
  --space-lg:   32px;
  --space-xl:   48px;
  --space-2xl:  80px;
  --space-3xl:  120px;

  /* Border - Misto de cantos retos e Squircles nativos */
  --radius-sm:  0px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadow - Sistema Dribbble Soft UI */
  --shadow-xs:  0 2px 8px rgba(5, 10, 17, 0.02);
  --shadow-sm:  0 8px 24px rgba(5, 10, 17, 0.04);
  --shadow-md:  0 16px 40px rgba(5, 10, 17, 0.06);
  --shadow-lg:  0 32px 80px rgba(5, 10, 17, 0.1);
  --shadow-xl:  0 50px 100px rgba(5, 10, 17, 0.15);
  --shadow-gold: 0 12px 32px rgba(184, 154, 88, 0.2);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 250ms var(--ease-out);
  --transition-base: 450ms var(--ease-out);
  --transition-slow: 700ms var(--ease-out);

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1560px;
  --header-height: 90px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--bp-gray-800); background: var(--bp-gray-50); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; color: var(--bp-navy); font-weight: 400; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0.05em; }
h6 { font-size: 0.875rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.15em; }
p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); }
.container--wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-xl); }
@media (max-width: 768px) { .container, .container--wide { padding: 0 var(--space-md); } }
.section { padding: var(--space-3xl) 0; }
.section--sm { padding: var(--space-2xl) 0; }
.section--lg { padding: calc(var(--space-3xl) * 1.5) 0; }
.grid { display: grid; }
.flex { display: flex; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); background: transparent; transition: background var(--transition-base), border-bottom var(--transition-base), height var(--transition-base); }
#site-header.scrolled { background: rgba(5, 10, 17, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(184, 154, 88, 0.15); height: calc(var(--header-height) * 0.85); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-logo { display: flex; align-items: center; gap: var(--space-sm); }
.site-logo__img { height: 40px; width: auto; }
.site-logo__text { display: flex; flex-direction: column; }
.site-logo__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--bp-white); line-height: 1; letter-spacing: 0.02em; }
.site-logo__tagline { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bp-gold); margin-top: 4px; }
.primary-nav { display: flex; align-items: center; gap: var(--space-md); }
.primary-nav a { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); padding: var(--space-xs) 0; position: relative; }
.primary-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--bp-gold); transform: scaleX(0); transform-origin: right; transition: transform var(--transition-base); }
.primary-nav a:hover, .primary-nav a.current-menu-item { color: var(--bp-white); }
.primary-nav a:hover::after, .primary-nav a.current-menu-item::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: flex; align-items: center; gap: var(--space-md); }
.header-phone { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.header-phone svg { color: var(--bp-gold); }
.mobile-toggle { display: none; flex-direction: column; gap: 6px; padding: var(--space-sm); }
.mobile-toggle span { display: block; width: 26px; height: 1px; background: var(--bp-white); transition: transform var(--transition-base), opacity var(--transition-fast); transform-origin: center; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--bp-navy); display: flex; flex-direction: column; padding: var(--space-xl); gap: var(--space-lg); transform: translateX(100%); transition: transform var(--transition-base); z-index: 999; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.5rem; color: var(--bp-white); border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: var(--space-md); transition: color var(--transition-fast); }
.mobile-nav a:hover { color: var(--bp-gold); }
@media (max-width: 1024px) { .primary-nav, .header-cta .header-phone { display: none; } .mobile-toggle { display: flex; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--bp-navy); }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); transition: transform 12s var(--ease-out); }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5, 10, 17, 0.7) 0%, rgba(5, 10, 17, 0.4) 40%, rgba(5, 10, 17, 0.8) 100%); }
.hero--loaded .hero__bg { transform: scale(1); }
.hero__content { position: relative; z-index: 2; padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl); text-align: center; max-width: 900px; margin: 0 auto; }
.hero__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bp-gold); margin-bottom: var(--space-lg); }
.hero__eyebrow::before, .hero__eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--bp-gold); }
.hero__title { color: var(--bp-white); margin-bottom: var(--space-lg); }
.hero__title em { font-style: italic; font-weight: 400; color: var(--bp-gold); }
.hero__subtitle { font-size: 1.125rem; font-weight: 300; color: rgba(255,255,255,0.8); margin: 0 auto var(--space-xl); line-height: 1.8; }
.hero__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.hero__stats { display: flex; justify-content: center; gap: var(--space-3xl); margin-top: var(--space-3xl); padding-top: var(--space-xl); border-top: 1px solid rgba(255,255,255,0.1); }
.hero__stat-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 400; color: var(--bp-gold); display: block; }
.hero__stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero__scroll { position: absolute; bottom: var(--space-xl); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================================
   SEARCH BAR (ULTRA-PREMIUM APP-LIKE)
   ============================================================ */
.search-bar { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: -110px; position: relative; z-index: 20; width: 100%; max-width: 1240px; margin-inline: auto; }
.search-bar__tabs { display: inline-flex; background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 8px; border-radius: 100px; box-shadow: 0 12px 40px rgba(5, 10, 17, 0.08); border: 1px solid rgba(255, 255, 255, 0.8); }
.search-tab { display: flex; align-items: center; gap: 10px; padding: 14px 36px; border-radius: 100px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; color: var(--bp-gray-600); background: transparent; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.search-tab svg { width: 18px; height: 18px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.search-tab:hover { color: var(--bp-navy); }
.search-tab.active { background: var(--bp-white); color: var(--bp-navy); box-shadow: 0 8px 24px rgba(5, 10, 17, 0.12); }
.search-tab.active svg { transform: scale(1.15); color: var(--bp-gold); }

.search-bar__fields { background: var(--bp-white); border-radius: 100px; box-shadow: 0 32px 80px rgba(5, 10, 17, 0.15); display: flex; align-items: center; padding: 12px 12px 12px 24px; width: 100%; border: 1px solid rgba(255, 255, 255, 0.9); animation: fadeUpSearch 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.search-bar__fields.hidden { display: none !important; }
@keyframes fadeUpSearch { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.search-field { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 14px 24px; border-radius: 100px; transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease; position: relative; }
.search-field::after { content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: var(--bp-gray-200); transition: opacity 0.3s ease; }
.search-field:last-of-type::after { display: none; }
.search-field:hover { background: var(--bp-gray-50); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,10,17,0.04); z-index: 2; }
.search-field:hover::after, .search-field:hover + .search-field::after { opacity: 0; }
.search-field label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bp-gray-400); margin-bottom: 4px; cursor: pointer; }
.search-field select { border: none; background: transparent; font-family: var(--font-display); font-size: 1.125rem; color: var(--bp-navy); width: 100%; padding: 0; margin: 0; cursor: pointer; -webkit-appearance: none; appearance: none; outline: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23B89A58' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; padding-right: 24px; text-overflow: ellipsis; }

.search-submit { flex-shrink: 0; margin-left: 12px; background: linear-gradient(135deg, var(--bp-navy) 0%, var(--bp-navy-light) 100%); color: var(--bp-white); height: 72px; padding: 0 48px; border-radius: 100px; font-family: var(--font-body); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; border: none; box-shadow: 0 12px 32px rgba(5, 10, 17, 0.2); }
.search-submit svg { width: 22px; height: 22px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); color: var(--bp-gold); }
.search-submit:hover { background: linear-gradient(135deg, var(--bp-gold) 0%, var(--bp-gold-dark) 100%); color: var(--bp-navy); transform: scale(1.02); box-shadow: 0 16px 40px rgba(184, 154, 88, 0.3); }
.search-submit:hover svg { color: var(--bp-navy); transform: translateX(4px) scale(1.1); }

@media (max-width: 1200px) { .search-bar { padding: 0 var(--space-xl); } }
@media (max-width: 1024px) { .search-bar { margin-top: -80px; } .search-bar__fields { border-radius: 32px; flex-wrap: wrap; padding: 24px; gap: 16px; display: grid; grid-template-columns: repeat(3, 1fr); } .search-field { border-radius: 16px; padding: 16px 20px; background: var(--bp-gray-50); border: 1px solid transparent; } .search-field::after { display: none; } .search-field:hover { background: var(--bp-white); border-color: var(--bp-gold-light); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(5,10,17,0.06); } .search-submit { grid-column: 1 / -1; width: 100%; border-radius: 20px; height: 64px; margin-left: 0; margin-top: 8px; } }
@media (max-width: 768px) { .search-bar { gap: 16px; padding: 0 var(--space-md); margin-top: -50px; } .search-bar__tabs { width: 100%; border-radius: 20px; padding: 6px; } .search-tab { flex: 1; justify-content: center; padding: 14px 0; font-size: 0.8125rem; border-radius: 16px; } .search-bar__fields { grid-template-columns: 1fr; gap: 12px; padding: 20px; border-radius: 24px; box-shadow: 0 20px 60px rgba(5,10,17,0.1); } .search-field { padding: 14px 20px; background: var(--bp-gray-50); border: 1px solid var(--bp-gray-100); } .search-submit { height: 60px; border-radius: 16px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px var(--space-2xl); border-radius: var(--radius-sm); transition: all var(--transition-base); cursor: pointer; white-space: nowrap; }
.btn--primary { background: var(--bp-navy); color: var(--bp-white); border: 1px solid var(--bp-navy); }
.btn--primary:hover { background: var(--bp-gold); border-color: var(--bp-gold); color: var(--bp-white); }
.btn--secondary { background: transparent; color: var(--bp-white); border: 1px solid rgba(255,255,255,0.4); }
.btn--secondary:hover { border-color: var(--bp-gold); color: var(--bp-gold); background: rgba(184, 154, 88, 0.05); }
.btn--outline { background: transparent; color: var(--bp-navy); border: 1px solid var(--bp-navy); }
.btn--outline:hover { background: var(--bp-navy); color: var(--bp-white); }
.btn--ghost { background: transparent; color: var(--bp-gold); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { gap: var(--space-md); }
.btn--sm { font-size: 0.65rem; padding: 12px var(--space-lg); }
.btn--lg { font-size: 0.85rem; padding: 20px var(--space-3xl); }
.btn--full { width: 100%; }

/* ============================================================
   PROPERTY CARD (Estilo Catálogo)
   ============================================================ */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: var(--space-2xl); }
.property-card { background: transparent; border-radius: var(--radius-sm); overflow: hidden; transition: all var(--transition-base); position: relative; }
.property-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bp-gray-200); border-radius: var(--radius-lg); }
.property-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow), filter var(--transition-slow); }
.property-card:hover .property-card__img { transform: scale(1.03); filter: brightness(0.95); }
.property-card__badges { position: absolute; top: var(--space-lg); left: var(--space-lg); display: flex; gap: var(--space-sm); flex-wrap: wrap; z-index: 2; }
.badge { display: inline-flex; align-items: center; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-xl); background: var(--bp-white); color: var(--bp-navy); box-shadow: var(--shadow-sm); }
.badge--venda      { border-left: 3px solid var(--bp-venda); }
.badge--aluguel    { border-left: 3px solid var(--bp-aluguel); }
.badge--temporada  { border-left: 3px solid var(--bp-temporada); }
.badge--lancamento { border-left: 3px solid var(--bp-lancamento); }
.property-card__wishlist { position: absolute; top: var(--space-lg); right: var(--space-lg); width: 36px; height: 36px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); color: var(--bp-gray-600); border-radius: var(--radius-full); box-shadow: var(--shadow-sm); }
.property-card__wishlist:hover, .property-card__wishlist.active { color: #D93025; background: #fff; transform: scale(1.1); }
.property-card__body { padding: var(--space-lg) 0 0 0; }
.property-card__location { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--bp-gray-400); margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 6px; }
.property-card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--bp-navy); margin-bottom: var(--space-md); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.property-card__specs { display: flex; gap: var(--space-lg); padding: var(--space-sm) 0; margin-bottom: var(--space-md); border-bottom: 1px solid var(--bp-gray-200); padding-bottom: var(--space-md); }
.property-spec { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--bp-gray-600); }
.property-spec svg { color: var(--bp-gold); width: 14px; height: 14px; flex-shrink: 0; }
.property-card__footer { display: flex; align-items: center; justify-content: space-between; }
.property-price { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; color: var(--bp-navy); display: flex; align-items: baseline; gap: var(--space-sm); }
.property-price small { font-size: 0.65rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bp-gray-400); }

/* BOAT CARD */
.boat-card .property-card__specs { flex-wrap: wrap; }
.boat-spec-group { display: flex; flex-direction: column; gap: 4px; min-width: 70px; }
.boat-spec-group .spec-val { font-size: 0.85rem; font-weight: 600; color: var(--bp-navy); }
.boat-spec-group .spec-lbl { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--bp-gray-400); }

/* ============================================================
   SINGLE PROPERTY (DRIBBBLE LUXE LEVEL)
   ============================================================ */
.single-property { 
  padding-top: calc(var(--header-height) + var(--space-xl)); 
  background: var(--bp-gray-50); 
}

/* Galeria Editorial */
.property-gallery { 
  display: grid; 
  grid-template-columns: 3fr 1fr; 
  grid-template-rows: repeat(2, 360px); 
  gap: 12px; 
  border-radius: var(--radius-2xl); /* Canto hiper suave */
  overflow: hidden; 
  box-shadow: var(--shadow-lg); /* Sombras dando peso arquitetônico */
  margin-bottom: var(--space-2xl);
}
.gallery-main { grid-row: 1 / -1; position: relative; overflow: hidden; }
.gallery-thumb { position: relative; overflow: hidden; cursor: pointer; }

/* Botão Flutuante de Galeria (Glassmorphism Pílula) */
.gallery-thumb .gallery-more { 
  position: absolute; 
  inset: 0; 
  background: rgba(5, 10, 17, 0.4); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: background var(--transition-fast);
}
.gallery-more-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--bp-white);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(5, 10, 17, 0.2);
  transition: transform var(--transition-base), background var(--transition-base);
}
.gallery-thumb:hover .gallery-more { background: rgba(5, 10, 17, 0.6); }
.gallery-thumb:hover .gallery-more-btn { transform: scale(1.05); background: rgba(255, 255, 255, 0.4); }

.gallery-main img, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-main:hover img, .gallery-thumb:hover img { transform: scale(1.04); }
@media (max-width: 768px) { .property-gallery { grid-template-columns: 1fr; grid-template-rows: 400px; border-radius: var(--radius-lg); } .gallery-thumb { display: none; } .gallery-main { grid-row: auto; } }

/* Cabeçalho Monumental */
.property-header { padding: 0 0 var(--space-xl); }
.property-meta { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.property-breadcrumb { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bp-gray-400); display: flex; align-items: center; gap: 8px; }
.property-breadcrumb a:hover { color: var(--bp-gold); }
.property-breadcrumb span { color: var(--bp-gray-200); }

.property-title-block { margin-bottom: var(--space-xl); max-width: 800px; }
.property-title-block h1 { font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.1; margin-bottom: var(--space-sm); color: var(--bp-navy); }
.property-condominio { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; color: var(--bp-gold); margin-bottom: var(--space-sm); text-transform: uppercase; }
.property-address { display: flex; align-items: center; gap: 8px; font-size: 1rem; color: var(--bp-gray-600); margin-top: var(--space-md); font-weight: 300; }
.property-address svg { color: var(--bp-gold); width: 20px; height: 20px; }

/* Grid de Layout */
.property-layout { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-3xl); align-items: start; padding-bottom: var(--space-3xl); }
@media (max-width: 1100px) { .property-layout { grid-template-columns: 1fr; } }

/* Neumorphic Specs Strip (Substituindo as linhas chatas) */
.property-specs-strip { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  padding: 0;
  border: none;
  margin-bottom: var(--space-3xl); 
}
.spec-item { 
  background: var(--bp-white);
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex; 
  flex-direction: column;
  align-items: flex-start; 
  gap: 12px; 
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(255,255,255,0.8);
}
.spec-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.spec-item__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--bp-gray-50); display: flex; align-items: center; justify-content: center; color: var(--bp-gold); flex-shrink: 0; }
.spec-item__icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.spec-item__data { display: flex; flex-direction: column; gap: 2px; }
.spec-item__label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--bp-gray-400); font-weight: 600; }
.spec-item__value { font-size: 1.25rem; font-weight: 400; font-family: var(--font-display); color: var(--bp-navy); }

/* Infra tags - Pill Design */
.property-section { margin-bottom: var(--space-2xl); padding-bottom: var(--space-2xl); border-bottom: 1px solid var(--bp-gray-200); }
.property-section:last-child { border-bottom: none; }
.property-section-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--bp-navy); margin-bottom: var(--space-xl); }

.infra-group { margin-bottom: var(--space-xl); }
.infra-group-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bp-gray-400); margin-bottom: var(--space-md); }
.infra-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.infra-tag { 
  font-size: 0.85rem; 
  color: var(--bp-gray-800); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  background: var(--bp-white);
  padding: 12px 20px;
  border-radius: 100px; /* Pílulas */
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--bp-gray-100);
  transition: all var(--transition-fast);
}
.infra-tag:hover { border-color: var(--bp-gold-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.infra-tag svg { color: var(--bp-gold); width: 16px; height: 16px; }

/* Sidebar Premium / Frosted Contact Card */
.property-sidebar { position: sticky; top: calc(var(--header-height) + var(--space-xl)); }
.contact-card { 
  background: rgba(255, 255, 255, 0.75); 
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 1); 
  border-radius: var(--radius-2xl); /* Canto suave premium */
  padding: var(--space-xl); 
  box-shadow: var(--shadow-xl); 
}
.contact-card__price-wrap { margin-bottom: var(--space-xl); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(5,10,17,0.05); }
.contact-card__price-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; color: var(--bp-gold); margin-bottom: 8px; }
.contact-card__price-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--bp-navy); line-height: 1; }
.contact-card__code { font-size: 0.65rem; color: var(--bp-gray-400); margin-top: 12px; letter-spacing: 0.1em; display: inline-block; background: var(--bp-gray-100); padding: 4px 12px; border-radius: 100px; }

.contact-card__broker { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-xl); background: var(--bp-white); padding: 16px; border-radius: var(--radius-xl); box-shadow: var(--shadow-xs); }
.broker-avatar { width: 72px; height: 72px; border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; border: 2px solid var(--bp-white); box-shadow: var(--shadow-sm); }
.broker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.broker-info { display: flex; flex-direction: column; gap: 2px; }
.broker-name { font-weight: 600; font-size: 1.1rem; color: var(--bp-navy); }
.broker-title { font-size: 0.75rem; color: var(--bp-gray-400); }
.broker-creci { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--bp-gold); margin-top: 4px; }

/* Soft UI Forms no Contact Card */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bp-gray-600); margin-left: 8px; }
.form-field input, .form-field textarea, .form-field select { 
  padding: 16px 20px; 
  border: 1px solid transparent; 
  border-radius: var(--radius-lg); 
  font-size: 0.95rem; 
  color: var(--bp-navy); 
  background: var(--bp-gray-50); 
  transition: all var(--transition-fast); 
  width: 100%; 
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { 
  background: var(--bp-white); 
  border-color: var(--bp-gold-light); 
  box-shadow: 0 4px 16px rgba(184, 154, 88, 0.1); 
}

/* Checkbox/Radios */
.form-radio-group { display: flex; flex-direction: row; gap: var(--space-lg); margin-top: 8px; padding-left: 8px; }
.form-radio { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--bp-gray-600); cursor: pointer; }
.form-radio input[type="radio"] { accent-color: var(--bp-gold); width: 16px; height: 16px; cursor: pointer; }

/* Botão Submit do Sidebar - Herdando o luxo da Searchbar */
.btn-submit-contact {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--bp-navy) 0%, var(--bp-navy-light) 100%);
  color: var(--bp-white);
  height: 64px;
  border-radius: 100px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer; border: none;
  box-shadow: 0 12px 32px rgba(5, 10, 17, 0.15);
  width: 100%;
}
.btn-submit-contact svg { width: 20px; height: 20px; color: var(--bp-gold); transition: transform 0.4s ease; }
.btn-submit-contact:hover {
  background: linear-gradient(135deg, var(--bp-gold) 0%, var(--bp-gold-dark) 100%);
  color: var(--bp-navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(184, 154, 88, 0.3);
}
.btn-submit-contact:hover svg { color: var(--bp-navy); transform: translateX(4px); }

/* ============================================================
   ARCHIVE / LISTING PAGE
   ============================================================ */
.archive-header { background: var(--bp-navy); padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl); text-align: center; }
.archive-title { color: var(--bp-white); margin-bottom: var(--space-sm); font-size: 3rem; }
.archive-subtitle { color: rgba(255,255,255,0.6); font-size: 1.125rem; font-weight: 300; }
.archive-layout { display: grid; grid-template-columns: 280px 1fr; gap: var(--space-3xl); padding: var(--space-3xl) 0; }
@media (max-width: 1024px) { .archive-layout { grid-template-columns: 1fr; } }
.filter-sidebar { position: sticky; top: calc(var(--header-height) + var(--space-xl)); max-height: calc(100vh - var(--header-height) - var(--space-2xl)); overflow-y: auto; padding-right: var(--space-md); }
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-track { background: transparent; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--bp-gray-200); border-radius: 100px; }
.filter-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--bp-navy); }
.filter-title { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--bp-navy); }
.filter-clear { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bp-gold); background: none; transition: color var(--transition-fast); }
.filter-clear:hover { color: var(--bp-navy); }
.filter-group { margin-bottom: var(--space-xl); padding-bottom: var(--space-lg); border-bottom: 1px dotted var(--bp-gray-200); }
.filter-group:last-child { border-bottom: none; }
.filter-group__title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bp-gray-600); margin-bottom: var(--space-md); }
.filter-group select, .filter-group input[type="text"], .filter-group input[type="number"] { width: 100%; padding: 8px 0; border: none; border-bottom: 1px solid var(--bp-gray-200); border-radius: 0; font-family: var(--font-display); font-size: 1rem; color: var(--bp-navy); background: transparent; transition: border-color var(--transition-fast); }
.filter-group select:focus, .filter-group input:focus { outline: none; border-bottom-color: var(--bp-gold); }
.filter-checkboxes { display: flex; flex-direction: column; gap: var(--space-sm); }
.filter-checkbox { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--bp-gray-600); cursor: pointer; transition: color var(--transition-fast); position: relative; }
.filter-checkbox:hover { color: var(--bp-navy); }
.filter-checkbox input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1px solid var(--bp-gray-400); border-radius: 0; display: grid; place-content: center; cursor: pointer; background: transparent; transition: all var(--transition-fast); }
.filter-checkbox input[type="checkbox"]::before { content: ""; width: 8px; height: 8px; background: var(--bp-gold); transform: scale(0); transition: 120ms transform ease-in-out; }
.filter-checkbox input[type="checkbox"]:checked { border-color: var(--bp-gold); }
.filter-checkbox input[type="checkbox"]:checked::before { transform: scale(1); }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-top: var(--space-md); }
.range-wrap { padding: var(--space-md) 0; }
.range-slider { -webkit-appearance: none; width: 100%; height: 1px; background: linear-gradient(to right, var(--bp-navy) 0%, var(--bp-navy) var(--val, 50%), var(--bp-gray-200) var(--val, 50%), var(--bp-gray-200) 100%); outline: none; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 8px; height: 16px; border-radius: 0; background: var(--bp-gold); cursor: pointer; transition: background var(--transition-fast); }
.range-slider::-webkit-slider-thumb:hover { background: var(--bp-navy); }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-2xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--bp-gray-200); }
.results-count { font-size: 0.75rem; color: var(--bp-gray-600); text-transform: uppercase; letter-spacing: 0.1em; }
.results-count strong { color: var(--bp-navy); font-weight: 600; }
.results-controls { display: flex; align-items: center; gap: var(--space-lg); }
.sort-select { padding: 8px 0; border: none; border-bottom: 1px solid var(--bp-gray-200); border-radius: 0; font-family: var(--font-body); font-size: 0.75rem; color: var(--bp-navy); background: transparent; cursor: pointer; text-transform: uppercase; letter-spacing: 0.1em; outline: none; }
.sort-select:focus { border-bottom-color: var(--bp-gold); }
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--space-md); margin-top: var(--space-3xl); border-top: 1px solid var(--bp-gray-200); padding-top: var(--space-2xl); }
.page-num { font-family: var(--font-display); font-size: 1.125rem; color: var(--bp-gray-400); transition: all var(--transition-fast); padding: 4px 8px; }
.page-num:hover, .page-num.current { color: var(--bp-navy); border-bottom: 1px solid var(--bp-navy); }

/* ============================================================
   FEATURED SECTION / SHOWCASE
   ============================================================ */
.featured-showcase { background: var(--bp-navy); padding: var(--space-3xl) 0; overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 768px) { .showcase-grid { grid-template-columns: 1fr; } }
.showcase-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; border-radius: var(--radius-xl); }
.showcase-item:first-child { aspect-ratio: 1; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.showcase-item:hover img { transform: scale(1.05); }
.showcase-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,17,0.8) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-2xl); transition: background var(--transition-base); }
.showcase-item:hover .showcase-item__overlay { background: linear-gradient(to top, rgba(5,10,17,0.95) 0%, rgba(5,10,17,0.2) 60%); }
.showcase-item__title { font-family: var(--font-display); color: var(--bp-white); font-size: 1.75rem; font-weight: 400; margin-bottom: 8px; }
.showcase-item__sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 300; }
.showcase-item__price { font-size: 1.125rem; font-weight: 400; color: var(--bp-gold); margin-top: var(--space-md); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--bp-navy); color: rgba(255,255,255,0.5); padding: var(--space-3xl) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--space-3xl); padding-bottom: var(--space-3xl); border-bottom: 1px solid rgba(255,255,255,0.05); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--bp-white); font-weight: 400; margin-bottom: 4px; }
.footer-logo__tagline { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--bp-gold); }
.footer-description { margin-top: var(--space-lg); font-size: 0.85rem; line-height: 1.8; max-width: 320px; font-weight: 300; }
.footer-social { display: flex; gap: var(--space-md); margin-top: var(--space-xl); }
.footer-social a { color: rgba(255,255,255,0.4); font-size: 1.25rem; transition: color var(--transition-fast); }
.footer-social a:hover { color: var(--bp-gold); }
.footer-col-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bp-white); margin-bottom: var(--space-xl); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-links a { font-size: 0.85rem; transition: color var(--transition-fast); font-weight: 300; }
.footer-links a:hover { color: var(--bp-gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; margin-bottom: var(--space-lg); font-weight: 300; }
.footer-contact-item svg { color: var(--bp-gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: var(--space-lg) 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; font-weight: 300; flex-wrap: wrap; gap: var(--space-sm); }
.footer-creci { font-size: 0.65rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   ADMIN BAR OFFSET
   ============================================================ */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ============================================================
   ANIMATIONS & UTILS
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeInUp 0.8s var(--ease-out) both; }
.lightbox-overlay { position: fixed; inset: 0; background: rgba(5,10,17,0.98); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.lightbox-overlay.open { display: flex; }
.lightbox-close { position: absolute; top: var(--space-xl); right: var(--space-xl); color: var(--bp-white); font-size: 2rem; background: none; transition: color var(--transition-fast); }
.lightbox-close:hover { color: var(--bp-gold); }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-lg); }

.whatsapp-float { position: fixed; bottom: var(--space-xl); right: var(--space-xl); width: 56px; height: 56px; background: #25D366; color: var(--bp-white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 500; transition: transform var(--transition-base), box-shadow var(--transition-base); border-radius: var(--radius-full); }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-xl); }
.whatsapp-float svg { width: 28px; height: 28px; }