/* =======================================================
   assets/css/corretor.css
   ======================================================= */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
html { scroll-behavior: smooth; }

/* ── VARIÁVEIS ── */
:root {
  --cream:      #faf6f0;
  --cream-mid:  #f3ece0;
  --cream-dark: #e8ddd0;
  --gold:       #b8935a;
  --gold-l:     #d4ad78;
  --gold-d:     #8f6e3c;
  --gold-bg:    rgba(184,147,90,.09);
  --ink:        #1a1512;
  --ink-soft:   #7a6a5a;
  --ink-muted:  #b0a090;
  --white:      #ffffff;
  --green:      #25d366;
  --brd:        rgba(184,147,90,.18);
  --brd-m:      rgba(184,147,90,.35);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', sans-serif;
  --sidebar-w:  280px;
  --r:          12px;
  --tr:         .28s cubic-bezier(.2,.9,.4,1);
}

/* ── BASE ── */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-mid); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TIPOGRAFIA ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; color: var(--ink); font-weight: 500; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; }

/* ── UTILITÁRIOS ── */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.accent-italic { color: var(--gold); font-style: italic; }

.badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px; border-radius: 100px; border: 1px solid var(--brd-m); background: var(--gold-bg); color: var(--gold-d); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── BOTÕES GLOBAIS ── */
.btn           { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 10px; font-size: .93rem; font-weight: 500; cursor: pointer; transition: .25s var(--tr); text-decoration: none; border: none; }
.btn-primary   { background: var(--gold); color: #fff; }
.btn-primary:hover   { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,147,90,.28); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1px solid var(--brd-m); }
.btn-secondary:hover { border-color: var(--gold); transform: translateY(-2px); }
.btn-ghost     { background: transparent; color: var(--gold); border: 1px solid var(--brd-m); }
.btn-ghost:hover     { background: var(--gold-bg); transform: translateY(-2px); }
.btn-whats     { background: #25d366; color: #fff; border-radius: 40px; padding: .7rem 1rem; justify-content: center; gap: .5rem; font-weight: 500;text-align:center; }
.btn-whats:hover     { background: #1ebe5b; transform: translateY(-2px); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 28px 90px; }
.hero-bg    { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(184,147,90,.07) 0%, transparent 70%); }
.hero-lines { position: absolute; inset: 0; opacity: .04; background-image: linear-gradient(var(--brd) 1px, transparent 1px), linear-gradient(90deg, var(--brd) 1px, transparent 1px); background-size: 64px 64px; }
.hero-grid    { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.hero-content { flex: 1; min-width: 250px; position: relative; z-index: 1; animation: heroIn .9s ease both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge   { margin-bottom: 28px; }
.hero h1      { margin-bottom: 20px; }
.hero-lead    { font-size: 1.12rem; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SIDEBAR ── */
.hero .sidebar        { flex: 0 0 var(--sidebar-w); background: var(--cream-mid); border-radius: var(--r); border: 1px solid var(--brd); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; align-self: start; position: sticky; top: 20px; }
.sidebar__foto        { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin: 0 auto; }
.sidebar__nome        { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-d); text-align: center; font-weight: 500; }
.sidebar__especialidade { font-size: .9rem; color: var(--ink-muted); text-align: center; }
.sidebar__divider     { border: none; border-top: 1px solid var(--brd); margin: .25rem 0; }
.stars                { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; text-align: center; }
.stars-label          { font-size: .8rem; color: var(--ink-muted); display: block; margin-top: .2rem; text-align: center; }
.sidebar__redes       { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.rede-link            { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--ink-muted); padding: .3rem .75rem; border: 1px solid var(--brd); border-radius: 40px; transition: var(--tr); }
.rede-link:hover      { border-color: var(--gold-d); color: var(--gold-l); background: var(--gold-bg); }

/* ── SEARCH ── */
.search-section  { padding: 0 28px 90px; }
.search-bar      { max-width: 900px; margin: 0 auto; background: var(--white); border: 1px solid var(--brd-m); border-radius: 18px; padding: 8px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 4px; box-shadow: 0 6px 32px rgba(26,21,18,.06); }
.search-field    { padding: 12px 16px; border-radius: 12px; transition: .25s; }
.search-field:hover { background: var(--gold-bg); }
.search-field label  { font-size: .7rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .07em; display: block; margin-bottom: 4px; font-weight: 500; }
.search-field select { background: none; border: none; outline: none; color: var(--ink); font-family: var(--sans); font-size: .93rem; cursor: pointer; width: 100%; }
.search-submit   { background: var(--gold); color: #fff; border: none; border-radius: 12px; padding: 14px 30px; font-weight: 600; cursor: pointer; transition: .25s; white-space: nowrap; }
.search-submit:hover { background: var(--gold-l); }

/* ── STATS ── */
.stats-section { padding: 64px 28px; border-top: 1px solid var(--brd); }
.stats-grid    { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--brd); border: 1px solid var(--brd); border-radius: 16px; overflow: hidden; }
.stat-item     { background: var(--white); padding: 32px 20px; text-align: center; }
.stat-number   { font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; font-weight: 500; }
.stat-label    { font-size: .8rem; color: var(--ink-soft); margin-top: 8px; }

/* ── MAIN / CARDS GRID ── */
.main        { max-width: 1200px; margin: 0 auto; padding: 2rem 28px; }
.main__header { margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--brd); }
.main__header h1 { font-size: 1.6rem; color: var(--gold-d); }
.main__header p  { font-size: .9rem; color: var(--ink-muted); margin-top: .25rem; }
.cards-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.8rem; }

/* ── CARD GENÉRICO ── */
.card        { background: var(--white); border: 1px solid var(--brd); border-radius: var(--r); overflow: hidden; transition: var(--tr); position: relative; }
.card:hover  { border-color: var(--gold-d); transform: translateY(-4px); box-shadow: 0 20px 30px -12px rgba(0,0,0,.1); }
.card__foto-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__foto      { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__foto { transform: scale(1.04); }
.card__quartos   { position: absolute; top: .75rem; right: .75rem; background: rgba(0,0,0,.65); color: var(--gold-l); font-size: .7rem; padding: .25rem .6rem; border-radius: 40px; backdrop-filter: blur(4px); }
.card__corpo     { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.card__titulo    { font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.card__endereco  { display: flex; gap: .3rem; font-size: .8rem; color: var(--ink-muted); }
.card__meta      { display: flex; gap: .75rem; }
.card__area      { font-size: .75rem; background: rgba(0,0,0,.04); padding: .2rem .6rem; border-radius: 20px; }
.card__preco     { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); font-weight: 500; margin-top: .25rem; }
.card::after     { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); opacity: 0; transition: var(--tr); }
.card:hover::after { opacity: 1; }

.card__whats     { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #EDE3D0; color: #fff; border-radius: 5px; padding: 8px 16px; font-size: .8rem; font-weight: 500; text-decoration: none; transition: .25s ease; margin-top: 12px; border: none; cursor: pointer; width: 100%; }
.card__whats:hover { background: #D5AE79; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,.3); }
.card__whats svg   { width: 18px; height: 18px; }

/* ── TOPBAR ── */
.topbar      { position: sticky; top: 0; z-index: 100; background: rgba(250,246,240,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--brd); padding: 12px 24px; display: flex; align-items: center; gap: 12px; }
.topbar-back { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--gold-d); font-weight: 500; padding: 7px 16px; border: 1px solid var(--brd-m); border-radius: 100px; transition: var(--tr); }
.topbar-back:hover { background: var(--gold-bg); }
.topbar-preco { margin-left: auto; font-family: var(--serif); font-size: 1.2rem; color: var(--gold); font-weight: 500; }

/* ── INFO DO IMÓVEL ── */
.imovel-info  { max-width: 1100px; margin: 28px auto 0; padding: 0 24px; }
.info-badge   { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; background: var(--gold-bg); border: 1px solid var(--brd-m); color: var(--gold-d); font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 10px; }
.info-nome    { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 500; line-height: 1.15; margin-bottom: 8px; }
.info-linha   { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--ink-muted); }
.info-linha span { display: flex; align-items: center; gap: 4px; }
.info-preco   { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 500; margin-top: 10px; }

/* ── GRID DE FOTOS ── */
.foto-section  { max-width: 1100px; margin: 24px auto 0; padding: 0 24px; display: flex; flex-direction: column; align-items: center; }
.foto-grid     { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; height: 500px; border-radius: 16px; overflow: hidden; width: 100%; }
.fg-main       { grid-row: 1/3; position: relative; overflow: hidden; cursor: pointer; }
.fg-small      { position: relative; overflow: hidden; cursor: pointer; }
.fg-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.fg-item:hover img { transform: scale(1.04); }
.fg-badge      { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.fg-counter    { position: absolute; bottom: 12px; right: 12px; background: rgba(26,21,18,.7); color: #fff; font-size: .72rem; font-weight: 500; padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(4px); }

.btn-ver-fotos { display: flex; align-items: center; gap: 8px; margin: 32px 0; padding: 10px 20px; border: 1px solid var(--brd-m); border-radius: 100px; background: #D4AD78; color: #fff; font-size: .85rem; font-weight: 600; cursor: pointer; transition: var(--tr); font-family: var(--sans); }
.btn-ver-fotos:hover {background:#fff; color: var(--gold-d); }

/* ── PAINEL DE FOTOS (em coluna, aberto pelo JS) ── */
#painel-fotos { max-width: 1100px; margin: 20px auto 0; padding: 0 24px; }

.painel-acoes  { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; margin-bottom: 32px; }
.btn-painel    { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border: 1px solid var(--brd-m); border-radius: 100px; background: var(--white); color: var(--gold-d); font-size: .85rem; font-weight: 500; cursor: pointer; font-family: var(--sans); transition: .2s; }
.btn-painel:hover { background: var(--gold-bg); border-color: var(--gold); }

/* ── SPECS ── */
.specs-wrap  { max-width: 1100px; margin: 28px auto 0; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.spec-pill   { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; background: var(--white); border: 1px solid var(--brd); font-size: .84rem; color: var(--ink-soft); }
.spec-pill strong { color: var(--ink); font-weight: 600; font-family: var(--serif); font-size: 1rem; }

/* ── FINANCEIRO ── */
.fin-wrap  { max-width: 1100px; margin: 16px auto 0; padding: 0 24px; display: flex; gap: 1px; background: var(--brd); border: 1px solid var(--brd); border-radius: 12px; overflow: hidden; }
.fin-item  { background: var(--white); padding: 16px 22px; flex: 1; min-width: 120px; }
.fin-lbl   { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-muted); font-weight: 500; margin-bottom: 4px; }
.fin-val   { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }

/* ── LAZER ── */
.lazer-wrap { max-width: 1100px; margin: 14px auto 0; padding: 0 24px; }
.lazer-box  { background: var(--gold-bg); border: 1px dashed var(--brd-m); border-radius: 10px; padding: 14px 20px; font-size: .84rem; color: var(--ink-soft); line-height: 1.6; }
.lazer-box strong { display: block; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-d); font-weight: 600; margin-bottom: 4px; }

/* ── SECTION DIVIDER ── */
.section-divider { border: none; border-top: 1px solid var(--brd); max-width: 1100px; margin: 32px auto; }

/* ── INFO COLS ── */
.info-cols     { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1100px; margin: 28px auto 0; padding: 0 24px; }
.info-col      { background: var(--white); border: 1px solid var(--brd); border-radius: 14px; padding: 26px 24px; }
.info-col-label { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.info-col h2   { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 10px; }
.info-col p    { font-size: .85rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.dest-list     { display: flex; flex-direction: column; gap: 7px; }
.dest-item     { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-soft); }
.dest-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── CTA CORRETOR ── */
.cta-wrap   { max-width: 1100px; margin: 28px auto 48px; padding: 0 24px; }
.cta-box    { background: #F4EDE2; border: 1px solid #f2c5a5; border-radius: 18px; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-info   { display: flex; align-items: center; gap: 16px; }
.cta-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-d)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: #000; flex-shrink: 0; }
.cta-nome   { font-family: var(--serif); font-size: 1.1rem; color: #000; margin-bottom: 2px; }
.cta-sub    { font-size: .75rem; color: #000; }
.cta-online { display: inline-flex; align-items: center; gap: 5px; font-size: .85rem; color: #258548; margin-top: 3px; }
.cta-online::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }

.btn-wa     { display: flex; align-items: center; gap: 10px; background:  #fff; color:  #b8935a; padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 600;border: 1px solid  #e8c590; }
.wa-icon    { width: 34px; height: 34px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; border: 2px solid #25D366; flex-shrink: 0; }
.wa-icon svg { width: 16px; height: 16px; }

/* ── FAB WHATSAPP ── */
.fab       { position: fixed; bottom: 20px; right: 20px; z-index: 300; background: var(--green); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,.4); transition: .2s; }
.fab:hover { transform: scale(1.08); }

/* ── CARDS IPR ── */
.ipr { --gold: #b8935a; --gold-l: #d4ad78; --gold-d: #8f6e3c; --gold-bg: rgba(184,147,90,.08); --brd: rgba(184,147,90,.18); --brd-m: rgba(184,147,90,.36); font-family: 'DM Sans', sans-serif; padding: 1.25rem 1rem 2rem; max-width: 1280px; margin: 0 auto; }

.ipr-bar       { display: flex; align-items: stretch; background: #fff; border: .5px solid var(--brd-m); border-radius: 12px; overflow: visible; margin-bottom: 1rem; box-shadow: 0 2px 12px rgba(184,147,90,.06); width: 100%; }
.ipr-drop      { position: relative; flex: 1; border-right: .5px solid var(--brd); }
.ipr-drop:last-of-type { border-right: none; }
.ipr-drop-btn  { width: 100%; background: none; border: none; cursor: pointer; padding: 10px 14px 9px; display: flex; flex-direction: column; gap: 2px; text-align: left; transition: background .18s; font-family: 'DM Sans', sans-serif; }
.ipr-drop-btn:hover,
.ipr-drop-btn.open { background: var(--gold-bg); }
.ipr-drop-lbl  { font-size: .62rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: #888; }
.ipr-drop-val  { font-size: .84rem; font-weight: 500; color: #1a1a1a; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.ipr-drop-val svg { flex-shrink: 0; transition: transform .2s; }
.ipr-drop-btn.open .ipr-drop-val svg { transform: rotate(180deg); }

.ipr-panel     { position: absolute; top: calc(100% + 6px); left: 0; min-width: 180px; background: #fff; border: .5px solid var(--brd-m); border-radius: 12px; padding: 6px; z-index: 999; display: none; box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.ipr-panel.open { display: block; }
.ipr-panel.right { left: auto; right: 0; }
.ipr-panel-cols   { display: grid; gap: 3px; }
.ipr-panel-cols.c1 { grid-template-columns: 1fr; }
.ipr-panel-cols.c2 { grid-template-columns: 1fr 1fr; }
.ipr-panel-cols.c3 { grid-template-columns: 1fr 1fr 1fr; }

.ipr-opt       { padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: .8rem; color: #666; transition: background .15s, color .15s; border: .5px solid transparent; font-family: 'DM Sans', sans-serif; background: none; width: 100%; text-align: left; }
.ipr-opt:hover { background: var(--gold-bg); color: var(--gold-d); }
.ipr-opt.sel   { background: var(--gold-bg); color: var(--gold-d); border-color: var(--brd-m); font-weight: 500; }

.ipr-btn-buscar      { background: var(--gold); color: #fff; border: none; border-radius: 0 12px 12px 0; padding: 10px 22px; font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500; cursor: pointer; transition: background .18s; white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; gap: 7px; }
.ipr-btn-buscar:hover { background: var(--gold-l); }

.ipr-active-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: .75rem; }
.ipr-tag         { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 100px; background: var(--gold-bg); border: .5px solid var(--brd-m); font-size: .72rem; font-weight: 500; color: var(--gold-d); font-family: 'DM Sans', sans-serif; }
.ipr-tag button  { background: none; border: none; cursor: pointer; color: var(--gold-d); font-size: 13px; line-height: 1; padding: 0; display: flex; align-items: center; }
.ipr-count        { font-size: .74rem; color: #888; margin-bottom: 1rem; }
.ipr-count strong { color: var(--gold); font-weight: 500; }

.ipr-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 1.1rem; }
.ipr-card  { background: #fff; border: .5px solid var(--brd); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform .22s, border-color .22s, box-shadow .22s; position: relative; text-decoration: none; color: inherit; }
.ipr-card:hover { transform: translateY(-4px); border-color: var(--brd-m); box-shadow: 0 12px 32px rgba(184,147,90,.14); }
.ipr-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); opacity: 0; transition: opacity .22s; }
.ipr-card:hover::after { opacity: 1; }

.ipr-img-wrap  { position: relative; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; display: block; }
.ipr-img       { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s; }
.ipr-card:hover .ipr-img { transform: scale(1.05); }
.ipr-badge-tipo   { position: absolute; top: 9px; left: 9px; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: rgba(22,18,13,.7); color: #d4ad78; padding: 3px 8px; border-radius: 100px; }
.ipr-badge-cidade { position: absolute; top: 9px; right: 9px; font-size: .62rem; font-weight: 500; background: rgba(250,246,240,.88); color: #8f6e3c; padding: 3px 8px; border-radius: 100px; }

.ipr-body     { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: 0; flex: 1; }
.ipr-nome     { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: #1a1a1a; line-height: 1.22; margin-bottom: 3px; }
.ipr-end      { font-size: .72rem; font-style: italic; color: #888; margin-bottom: 9px; line-height: 1.4; }
.ipr-specs    { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
.ipr-spec     { display: flex; align-items: center; gap: 3px; font-size: .69rem; color: #666; background: #f5f5f5; padding: 3px 7px; border-radius: 100px; }
.ipr-div      { border: none; border-top: .5px solid var(--brd); margin: 7px 0; }
.ipr-fin      { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 8px; margin-bottom: 8px; }
.ipr-fin-item { display: flex; flex-direction: column; }
.ipr-fin-lbl  { font-size: .59rem; letter-spacing: .06em; text-transform: uppercase; color: #aaa; font-weight: 500; }
.ipr-fin-val  { font-size: .78rem; color: #333; }
.ipr-lazer    { font-size: .69rem; color: #666; background: var(--gold-bg); border: .5px dashed var(--brd-m); border-radius: 8px; padding: 5px 9px; line-height: 1.45; margin-bottom: 9px; }
.ipr-lazer strong { color: var(--gold-d); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 1px; font-weight: 500; }
.ipr-preco    { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--gold); margin-top: auto; padding-bottom: 2px; }

.ipr-card-actions { display: flex; gap: 8px; margin-top: 10px; }
.ipr-btn-ver, .ipr-whats     { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; padding: 9px 12px; border-radius: 8px; background: #f5f0e8; color: #8f6e3c; font-family: 'DM Sans', sans-serif; font-size: .76rem; font-weight: 500; text-decoration: none; transition: background .18s; }
.ipr-btn-ver:hover, .ipr-whats:hover  { background: #ede3d0; }

.ipr-whats  {color:#3a9632 ;}  


.ipr-paginacao  { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 2rem; flex-wrap: wrap; }
.ipr-page-btn   { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; border: .5px solid var(--brd-m); background: #fff; color: #666; font-family: 'DM Sans', sans-serif; font-size: .82rem; cursor: pointer; transition: background .15s, color .15s; font-weight: 500; }
.ipr-page-btn:hover { background: var(--gold-bg); color: var(--gold-d); }
.ipr-page-btn.ativo { background: var(--gold); color: #fff; border-color: var(--gold); }
.ipr-page-btn.prev-next { width: auto; padding: 0 14px; gap: 5px; }
.ipr-empty { grid-column: 1/-1; text-align: center; padding: 2.5rem 1rem; font-size: .85rem; color: #999; }









.ipr-info-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; margin: 8px 0; }
.ipr-info-box  { background: #f5f0e8; border: .5px solid var(--brd); border-radius: 8px; padding: 8px 12px; }
.ipr-info-lbl  { font-size: .59rem; letter-spacing: .06em; text-transform: uppercase; color: #aaa; font-weight: 500; }
.ipr-info-val  { font-size: .82rem; color: var(--ink); font-weight: 500; margin-top: 2px; }



/* ── RESPONSIVO ── */
@media (max-width: 768px) {
  .hero-grid      { flex-direction: column; }
  .hero .sidebar  { width: 100%; min-width: unset; position: static; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem; }
  .hero .sidebar__foto { width: 70px; height: 70px; margin: 0; }
  .hero .sidebar__info { flex: 1; min-width: 160px; }
  .hero .sidebar__nome,
  .hero .sidebar__especialidade,
  .hero .stars,
  .hero .stars-label { text-align: left; }
  .hero .sidebar__redes  { justify-content: flex-start; }
  .hero .sidebar__divider { display: none; }
  .hero-actions   { flex-direction: column; align-items: stretch; }
  .search-bar     { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr; gap: 1px; }
  .main           { padding: 1rem; }
  .cards-grid     { grid-template-columns: 1fr; }
  .foto-grid      { grid-template-columns: 1fr; grid-template-rows: 260px 140px 140px; height: auto; }
  .fg-main        { grid-row: auto; }
  .info-cols      { grid-template-columns: 1fr; }
  .cta-box        { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .ipr-bar        { flex-wrap: wrap; border-radius: 10px; }
  .ipr-drop       { flex: 1 1 45%; border-right: none; border-bottom: .5px solid var(--brd); }
  .ipr-btn-buscar { border-radius: 0 0 10px 10px; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero .sidebar              { flex-direction: column; align-items: stretch; }
  .hero .sidebar__foto        { margin: 0 auto; }
  .hero .sidebar__nome,
  .hero .sidebar__especialidade,
  .hero .stars,
  .hero .stars-label          { text-align: center; }
  .hero .sidebar__redes       { justify-content: center; }
}