/* ============================================================
   Site público do profissional — redesign visual (2026-07).
   Todas as cores vêm das variáveis CSS do profissional
   (--primary-color, --secondary-color etc, definidas inline
   no partials/head.blade.php). custom_css do profissional é
   injetado DEPOIS deste arquivo, sempre pode sobrescrever.
   ============================================================ */

/* ---------- Reset leve ---------- */
.site-contact-header, .site-header, .site-footer, .perfil-home * {
  box-sizing: border-box;
}

/* ============================================================
   SHELL COMPARTILHADO (todas as páginas)
   ============================================================ */

/* ---------- Barra de contato ---------- */
.site-contact-header {
  background: var(--primary-color);
  color: #fff;
  padding: 9px 0;
  font-size: 13.5px;
}
.site-contact-header a {
  color: #fff;
  text-decoration: none;
  opacity: .92;
  transition: opacity .2s;
}
.site-contact-header a:hover { opacity: 1; }
.site-contact-header .social-links { display: inline-flex; gap: 8px; }
.site-contact-header .social-links a {
  width: 27px; height: 27px; border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: background .2s, transform .2s;
}
.site-contact-header .social-links a:hover { background: rgba(255,255,255,.3); transform: translateY(-1px); }

/* ---------- Cabeçalho / navbar ---------- */
.site-header {
  background: var(--header-bg-color, rgba(255,255,255,.96));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  position: sticky; top: 0; z-index: 1000;
}
.site-header .navbar { padding: 12px 0; }
.navbar-brand img { max-height: 46px; }
.navbar-nav .nav-link {
  font-weight: 600; font-size: 14.5px;
  color: var(--nav-text-color, var(--text-color)) !important;
  margin: 0 4px; padding: 8px 14px !important;
  border-radius: 999px; transition: background .2s, color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--nav-active-color, var(--primary-color)) !important;
  background: var(--nav-hover-bg, color-mix(in srgb, var(--primary-color) 9%, transparent));
}
.navbar-brand strong {
  color: var(--primary-color) !important;
}

/* ---------- Botões ---------- */
.btn-primary-custom, .btn-outline-custom, .btn-whatsapp {
  font-weight: 600;
  padding: 11px 26px;
  transition: transform .18s ease, box-shadow .18s ease, background .2s, border-color .2s;
}
.btn-primary-custom {
  background-color: var(--button-primary-color) !important;
  border-color: var(--button-primary-color) !important;
  color: var(--button-text-color) !important;
  border-radius: var(--btn-radius);
}
.btn-primary-custom:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--button-primary-color) 35%, transparent);
}
.btn-outline-custom {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
  border-radius: var(--btn-radius);
}
.btn-outline-custom:hover {
  background: var(--primary-color) !important;
  color: var(--button-text-color) !important;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  border-radius: var(--btn-radius);
}
.btn-whatsapp:hover {
  background-color: #128c7e !important;
  border-color: #128c7e !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37,211,102,.35);
}

.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

/* ---------- Cards ---------- */
.card-sombra {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  border: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-sombra:hover { transform: translateY(-7px); box-shadow: 0 20px 42px rgba(0,0,0,.13); }
.card-glass {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}
.card-glass:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.card-minimal {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: transform .3s, border-color .3s;
}
.card-minimal:hover { border-color: var(--primary-color); transform: translateY(-3px); }
.card-luxury {
  border-radius: 18px;
  border: 1px solid #fbbf24;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(217,119,6,.08);
  transition: transform .3s, box-shadow .3s;
}
.card-luxury:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(217,119,6,.18); }
.card-borda {
  border-radius: 18px;
  box-shadow: none;
  border: 2px solid #e7e3ec;
  transition: border-color .3s ease, transform .3s ease;
}
.card-borda:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.card-flat {
  border-radius: 12px;
  box-shadow: none;
  border: none;
  background: var(--white);
  transition: background .3s ease;
}
.card-flat:hover { background: var(--light-bg); }

/* ---------- Título de seção ---------- */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--heading-color, var(--primary-color));
  margin-bottom: 12px;
}
.section-title p { font-size: 1.02rem; color: var(--subtitle-color, #6b7280); max-width: 600px; margin: 0 auto; }

/* ---------- Paginação ---------- */
.pagination .page-link { color: var(--primary-color); border-radius: 10px; margin: 0 3px; border-color: var(--border-color, #e7e3ec); }
.pagination .page-item.active .page-link {
  background-color: var(--primary-color); border-color: var(--primary-color); color: #fff;
}

/* ---------- Rodapé ---------- */
.site-footer { background: var(--footer-bg-color); color: var(--footer-text-color); padding: 66px 0 30px; }
.site-footer h5 { font-weight: 700; margin-bottom: 20px; color: var(--footer-text-color); font-size: 15.5px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 11px; font-size: 14px; }
.site-footer ul li a { color: var(--footer-text-color); opacity: .78; text-decoration: none; transition: opacity .2s; }
.site-footer ul li a:hover { opacity: 1; }
.footer-social { display: flex; gap: 10px; margin-bottom: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-text-color); transition: all .25s; text-decoration: none;
}
.footer-social a:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; }
.stayou-link { color: rgba(255,255,255,.7); text-decoration: none; display: inline-flex; align-items: center; transition: color .2s; }
.stayou-link:hover { color: #fff; }

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 58px; height: 58px; background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 27px; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 1000; text-decoration: none; transition: transform .2s, background .2s;
  animation: wa-pulse 2.2s infinite;
}
.whatsapp-float:hover { background: #128c7e; color: #fff; transform: scale(1.08); }
@keyframes wa-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ============================================================
   FILTRO DE IMÓVEIS — primeiro bloco
   ============================================================ */
.property-filter-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 40px 0 48px;
  position: relative;
}
.property-filter-hero h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.property-filter-box {
  background: var(--white, #fff);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.property-filter-box .form-label {
  font-weight: 600; font-size: .82rem; color: var(--text-color, #2d3748);
  margin-bottom: .35rem;
}
.property-filter-box .form-label i { color: var(--primary-color); }
.property-filter-box .form-control,
.property-filter-box .form-select {
  border-radius: var(--btn-radius, 8px);
  border: 1.5px solid var(--border-color, #dee2e6);
  transition: border-color .2s, box-shadow .2s;
  font-size: .9rem;
}
.property-filter-box .form-control:focus,
.property-filter-box .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--primary-color) 15%, transparent);
}
.property-filter-box .btn-filter-search {
  background: var(--button-primary-color, var(--primary-color));
  color: var(--button-text-color, #fff);
  border: none;
  border-radius: var(--btn-radius, 8px);
  font-weight: 600;
  padding: 10px 24px;
  transition: filter .2s, transform .2s;
}
.property-filter-box .btn-filter-search:hover {
  filter: brightness(.9);
  transform: translateY(-1px);
}
.property-filter-box .btn-filter-clear {
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  border-radius: var(--btn-radius, 8px);
  font-weight: 600;
  padding: 10px 18px;
  transition: background .2s, color .2s;
}
.property-filter-box .btn-filter-clear:hover {
  background: var(--primary-color);
  color: var(--button-text-color, #fff);
}
@media (max-width: 767px) {
  .property-filter-hero { padding: 28px 0 32px; }
  .property-filter-box { padding: 18px; }
  .filter-extra-mobile { display: none; }
  .filter-extra-mobile.show { display: block; }
  .btn-filter-toggle-mobile {
    background: var(--light-bg, #f8fafc);
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: var(--btn-radius, 8px);
    padding: 8px 14px;
    font-size: .82rem;
    color: var(--text-color, #2d3748);
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   PÁGINA INICIAL (profile.blade.php)
   ============================================================ */

/* ---------- Hero ---------- */
.perfil-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
}
.perfil-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--hero-overlay-color) calc(var(--hero-opacity) * 55%), transparent) 0%,
    color-mix(in srgb, var(--hero-overlay-color) calc(var(--hero-opacity) * 80%), transparent) 100%
  );
}
.perfil-hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}
.perfil-hero__title {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 3px 14px rgba(0,0,0,.4);
}
.perfil-hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  opacity: .96;
  margin-bottom: 34px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* ---------- Cartão de perfil ---------- */
.perfil-card {
  background: var(--card-bg, var(--white));
  margin-top: -86px;
  position: relative;
  z-index: 3;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  padding: 44px;
}
.perfil-card__col + .perfil-card__col {
  border-left: 1px solid var(--card-border, #eee6f0);
}
@media (max-width: 991px) {
  .perfil-card__col + .perfil-card__col { border-left: none; border-top: 1px solid var(--card-border, #eee6f0); padding-top: 28px; margin-top: 20px; }
}
.perfil-photo-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.perfil-photo, .perfil-logo {
  width: 108px; height: 108px;
  object-fit: cover; border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.perfil-photo { border: 4px solid var(--primary-color); }
.perfil-logo { border: 4px solid var(--white); }
.perfil-logo-placeholder {
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  color: #b7adc4; font-size: 2.2rem;
}
.perfil-company-name { color: var(--primary-color); font-weight: 800; font-size: 1.5rem; margin-bottom: 6px; }
.perfil-meta-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.perfil-meta-list .item { font-size: 13.5px; color: var(--meta-text, #4a5568); }
.perfil-meta-list .item a { color: inherit; text-decoration: none; }
.perfil-meta-list .item a:hover { color: var(--primary-color); }
.perfil-meta-list .item i { color: var(--primary-color); margin-right: 6px; }

.perfil-card h5.perfil-col-title {
  font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .4px;
  color: var(--meta-text, #4a5568); border-bottom: 1px solid var(--card-border, #eee6f0); padding-bottom: 10px; margin-bottom: 16px;
}

/* Links de documentos */
.doc-link-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 15px; background: var(--light-bg);
  border-radius: 12px; text-decoration: none;
  transition: all .25s; border: 1px solid transparent;
}
.doc-link-card:hover { background: var(--white); border-color: var(--primary-color); transform: translateX(4px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.doc-link-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 10px; font-size: 18px; flex: 0 0 auto; }
.doc-link-title { font-weight: 600; color: var(--text-color); font-size: 13.5px; }
.doc-link-action { font-size: 11.5px; color: var(--primary-color); }
.perfil-empty-box { text-align: center; padding: 34px 15px; border-radius: 14px; background: var(--light-bg); color: #9a93a8; }

/* Redes sociais / CTA */
.social-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.social-link-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 15px 10px; border-radius: 14px; text-decoration: none;
  transition: all .25s; gap: 7px;
}
.social-link-card i { font-size: 22px; }
.social-link-card span { font-size: 12px; font-weight: 600; }
.social-link-card.facebook { background: #e8f4fd; color: #1877f2; }
.social-link-card.facebook:hover { background: #1877f2; color: #fff; transform: translateY(-3px); }
.social-link-card.instagram { background: linear-gradient(45deg, #fdf2f8, #fef3e8); color: #e4405f; }
.social-link-card.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; transform: translateY(-3px); }
.social-link-card.linkedin { background: #e8f4fc; color: #0077b5; }
.social-link-card.linkedin:hover { background: #0077b5; color: #fff; transform: translateY(-3px); }
.social-link-card.youtube { background: #fee2e2; color: #ff0000; }
.social-link-card.youtube:hover { background: #ff0000; color: #fff; transform: translateY(-3px); }
.perfil-cta-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.perfil-cta-stack .btn { width: 100%; }

/* ---------- Sobre ---------- */
.perfil-about { padding: 84px 0; background: var(--section-bg, var(--white)); }
.perfil-about__text { color: var(--body-text, #4a5568); font-size: 1.06rem; line-height: 1.85; }

/* ---------- Serviços ---------- */
.perfil-services { padding: 84px 0; background: var(--section-alt-bg, var(--light-bg)); }
.perfil-service-card { background: var(--card-bg, var(--white)); padding: 34px 28px; text-align: center; height: 100%; }
.perfil-service-icon {
  width: 68px; height: 68px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 26px; color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  transition: all .3s;
}
.perfil-service-card:hover .perfil-service-icon { background: var(--primary-color); color: #fff; transform: scale(1.06); }
.perfil-service-card h5 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: var(--heading-color, var(--text-color)); }
.perfil-service-card p { color: var(--body-text, #718096); font-size: .93rem; margin: 0; }

/* ---------- Busca de imóveis ---------- */
.perfil-search {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.perfil-search h3 { color: #fff; text-align: center; margin-bottom: 26px; font-weight: 700; font-size: 1.4rem; }
.perfil-search__box {
  background: var(--white); border-radius: 18px; padding: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  display: grid; grid-template-columns: 1fr 200px auto; gap: 16px; align-items: end;
}
@media (max-width: 767px) { .perfil-search__box { grid-template-columns: 1fr; } }
.perfil-search label { font-size: 13px; font-weight: 600; color: var(--meta-text, #4a5568); margin-bottom: 6px; display: block; }
.perfil-search input, .perfil-search select {
  width: 100%; border: 1.5px solid var(--border-color, #e2e2ea); border-radius: 12px;
  padding: 12px 14px; font-size: 14.5px; outline: none; transition: border-color .2s;
}
.perfil-search input:focus, .perfil-search select:focus { border-color: var(--primary-color); }

/* ---------- Imóveis ---------- */
.perfil-properties { padding: 84px 0; background: var(--section-alt-bg, var(--light-bg)); }
.property-card { background: var(--card-bg, var(--white)); overflow: hidden; height: 100%; }
.property-card-link { text-decoration: none; color: inherit; display: block; }
.property-card-link:hover { color: inherit; }
.property-image { height: 230px; background-size: cover; background-position: center; position: relative; }
.property-price {
  position: absolute; top: 14px; right: 14px;
  background: var(--primary-color); color: #fff;
  padding: 7px 15px; border-radius: 999px; font-weight: 700; font-size: 13.5px;
}
.property-content { padding: 22px; }
.property-title { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; color: var(--heading-color, var(--text-color)); }
.property-desc { color: var(--body-text, #718096); font-size: .88rem; margin-bottom: 16px; }
.property-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.property-view-link { color: var(--primary-color); font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }
.property-whats-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background-color: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s; flex: 0 0 auto;
}
.property-whats-btn:hover { background-color: #128c7e; transform: scale(1.08); }
.property-whats-btn i { font-size: 16px; }

/* ---------- Detalhes do imóvel ---------- */
.detail-card {
  background: var(--card-bg, var(--white));
  border: 1px solid var(--border-color, transparent);
}
.detail-card h3 {
  color: var(--heading-color, var(--primary-color));
}
.feature-item {
  background: var(--section-alt-bg, var(--light-bg));
}
.feature-item i { color: var(--primary-color); }
.price-tag { color: var(--primary-color); }
.broker-card {
  background: var(--card-bg, var(--white));
}

/* ---------- Formulários ---------- */
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--primary-color) 15%, transparent);
}

/* ---------- Filtros (portfolio) ---------- */
.filters-wrapper {
  background: var(--card-bg, white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
  border: 1px solid var(--border-color, #e2e8f0);
}
.filters-wrapper .form-label { font-weight: 600; color: var(--text-color); margin-bottom: 0.4rem; font-size: 0.85rem; }
.filters-wrapper .form-label i { color: var(--primary-color); }
.filters-wrapper .form-control, .filters-wrapper .form-select {
  border-radius: var(--btn-radius, 8px); border: 1px solid var(--border-color, #dee2e6);
  transition: all 0.2s ease; background: var(--input-bg, #fff); color: var(--text-color, #2d3748);
}
.filters-wrapper .form-control:focus, .filters-wrapper .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--primary-color) 15%, transparent);
}
.filters-wrapper .btn-primary {
  background-color: var(--button-primary-color); border-color: var(--button-primary-color);
  color: var(--button-text-color); border-radius: var(--btn-radius, 8px); font-weight: 600;
}
.filters-wrapper .btn-primary:hover { filter: brightness(.9); }
.filters-wrapper .btn-outline-secondary { border-color: var(--border-color, #cbd5e0); color: var(--body-text, #718096); border-radius: var(--btn-radius, 8px); }
.filters-wrapper .btn-outline-secondary:hover { background-color: var(--body-text, #718096); border-color: var(--body-text, #718096); color: white; }
.filters-wrapper .btn-outline-danger { border-radius: var(--btn-radius, 8px); }
#advancedFilters { border-top: 1px solid var(--border-color, #e2e8f0); padding-top: 15px; margin-top: 5px; }

/* ---------- Responsivo ---------- */
@media (max-width: 768px) {
  .perfil-hero { min-height: 440px; padding: 64px 0; background-attachment: scroll; }
  .perfil-card { margin-top: -46px; padding: 26px; }
  .section-title { margin-bottom: 34px; }
}
@media (max-width: 991px) {
  .navbar-collapse { padding: 14px 4px 4px; }
  .navbar-nav .nav-item { width: 100%; }
  .navbar-collapse .btn-whatsapp { display: block; width: 100%; text-align: center; margin: 10px 0 0 !important; }
}

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }


/* ============================================================
   TEMPLATE: ESCURO (arquitetura)
   Fundo escuro com acentos metálicos em todas as páginas
   ============================================================ */
body.template-arquitetura {
  --text-color: #e4e4e7;
  --body-text: #a1a1aa;
  --meta-text: #a1a1aa;
  --heading-color: #fafafa;
  --subtitle-color: #71717a;
  --light-bg: #27272a;
  --white: #18181b;
  --card-bg: #27272a;
  --card-border: #3f3f46;
  --section-bg: #18181b;
  --section-alt-bg: #1c1c1f;
  --border-color: #3f3f46;
  --input-bg: #27272a;
  --nav-text-color: #d4d4d8;
  --nav-active-color: #a1a1aa;
  --nav-hover-bg: rgba(161,161,170,.12);
  background: #18181b;
  color: #e4e4e7;
}
body.template-arquitetura .site-header {
  background: rgba(24,24,27,.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
body.template-arquitetura .navbar-brand strong { color: #fafafa !important; }
body.template-arquitetura .navbar-toggler-icon { filter: invert(1); }
body.template-arquitetura .site-contact-header { background: #09090b; }
body.template-arquitetura .card-glass {
  background: rgba(39,39,42,.75); border-color: rgba(63,63,70,.5);
}
body.template-arquitetura .card-glass:hover { background: rgba(39,39,42,.95); }
body.template-arquitetura .card-sombra { box-shadow: 0 10px 30px rgba(0,0,0,.3); }
body.template-arquitetura .card-sombra:hover { box-shadow: 0 20px 42px rgba(0,0,0,.45); }
body.template-arquitetura .perfil-card { box-shadow: 0 20px 50px rgba(0,0,0,.35); }
body.template-arquitetura .doc-link-card { background: #27272a; }
body.template-arquitetura .doc-link-card:hover { background: #3f3f46; border-color: #a1a1aa; }
body.template-arquitetura .doc-link-icon { background: #3f3f46; }
body.template-arquitetura .perfil-empty-box { background: #27272a; color: #71717a; }
body.template-arquitetura .social-link-card.facebook { background: rgba(24,119,242,.15); }
body.template-arquitetura .social-link-card.instagram { background: rgba(228,64,95,.12); }
body.template-arquitetura .social-link-card.linkedin { background: rgba(0,119,181,.15); }
body.template-arquitetura .social-link-card.youtube { background: rgba(255,0,0,.12); }
body.template-arquitetura .form-control,
body.template-arquitetura .form-select {
  background: #27272a; border-color: #3f3f46; color: #e4e4e7;
}
body.template-arquitetura .form-control::placeholder { color: #71717a; }
body.template-arquitetura .filters-wrapper {
  background: #27272a; border-color: #3f3f46;
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
}
body.template-arquitetura .page-hero-content { background: rgba(0,0,0,.4); }
body.template-arquitetura .property-badge { background: #3f3f46; }
body.template-arquitetura .text-muted { color: #71717a !important; }
body.template-arquitetura .property-filter-hero { background: linear-gradient(135deg, #18181b 0%, #27272a 100%); }
body.template-arquitetura .property-filter-box { background: #27272a; box-shadow: 0 16px 40px rgba(0,0,0,.4); }
body.template-arquitetura .input-group-text { background: #3f3f46; border-color: #3f3f46; color: #a1a1aa; }

/* ============================================================
   TEMPLATE: ALTO PADRÃO (luxury)
   Cores douradas com tipografia serifada em todas as páginas
   ============================================================ */
body.template-luxury {
  --border-color: #fde68a;
  --card-border: #fde68a;
}
body.template-luxury .site-header {
  background: #fffbeb;
  border-bottom: 1px solid #fbbf24;
}
body.template-luxury .section-title h2,
body.template-luxury .page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}
body.template-luxury .perfil-hero__title {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1.5px;
}
body.template-luxury .card-luxury { border-color: #fbbf24; }
body.template-luxury .card-luxury:hover { box-shadow: 0 10px 30px rgba(217,119,6,.22); }
body.template-luxury .perfil-card { border: 1px solid #fde68a; }
body.template-luxury .perfil-service-icon {
  background: linear-gradient(135deg, rgba(217,119,6,.1), rgba(120,53,15,.08));
}
body.template-luxury .perfil-service-card:hover .perfil-service-icon {
  background: linear-gradient(135deg, #d97706, #92400e);
}
body.template-luxury .property-price {
  background: linear-gradient(135deg, #d97706, #92400e);
}
body.template-luxury .site-contact-header {
  background: linear-gradient(90deg, #78350f, #92400e);
}
body.template-luxury .footer-social a { background: rgba(251,191,36,.15); }
body.template-luxury .footer-social a:hover { background: rgba(251,191,36,.35); }
body.template-luxury .property-filter-hero {
  background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
}
body.template-luxury .property-filter-box { border: 1px solid #fde68a; }

/* ============================================================
   TEMPLATE: MARKETPLACE (lancamentos)
   Cores verdes vibrantes com botões em pílula
   ============================================================ */
body.template-lancamentos .btn-primary-custom,
body.template-lancamentos .btn-outline-custom,
body.template-lancamentos .btn-whatsapp,
body.template-lancamentos .btn-filter-search,
body.template-lancamentos .btn-filter-clear {
  border-radius: 9999px;
}
body.template-lancamentos .property-price {
  border-radius: 9999px;
}
body.template-lancamentos .site-contact-header {
  background: linear-gradient(90deg, #059669, #047857);
}
body.template-lancamentos .perfil-service-icon {
  border-radius: 50%;
}
body.template-lancamentos .pagination .page-link { border-radius: 9999px; }

/* ============================================================
   TEMPLATE: CORPORATIVO (consultor)
   Tipografia elegante com azul institucional
   ============================================================ */
body.template-consultor .section-title h2,
body.template-consultor .page-hero h1 {
  font-family: 'Playfair Display', serif;
}
body.template-consultor .perfil-hero__title {
  font-family: 'Playfair Display', serif;
}
body.template-consultor .site-contact-header {
  background: linear-gradient(90deg, #1e40af, #1d4ed8);
}
body.template-consultor .perfil-card {
  border-top: 4px solid #1e40af;
}
body.template-consultor .detail-card {
  border-top: 3px solid #1e40af;
}
body.template-consultor .property-filter-hero {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

/* ============================================================
   TEMPLATE: CONSTRUTORA (minimalista)
   Limpo com bordas retas e cores neutras
   ============================================================ */
body.template-minimalista {
  --border-color: #e2e8f0;
  --card-border: #e2e8f0;
}
body.template-minimalista .card-minimal { border-radius: 8px; }
body.template-minimalista .site-header { box-shadow: 0 1px 3px rgba(0,0,0,.06); }
body.template-minimalista .perfil-card { border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,.06); }
body.template-minimalista .perfil-hero__title { font-weight: 700; letter-spacing: -.5px; }
body.template-minimalista .section-title h2 { font-weight: 700; letter-spacing: -.3px; }
body.template-minimalista .perfil-service-icon { border-radius: 8px; }
body.template-minimalista .site-contact-header {
  background: #1e293b;
}
body.template-minimalista .property-filter-hero {
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
}
body.template-minimalista .property-filter-box { border-radius: 8px; }
body.template-minimalista .filters-wrapper { border-radius: 8px; }

/* ============================================================
   TEMPLATE: CORRETOR PREMIUM (moderno)
   Vibrante com gradiente roxo/laranja
   ============================================================ */
body.template-moderno .site-contact-header {
  background: linear-gradient(90deg, #3c004f, #5a1a6d);
}
body.template-moderno .perfil-service-icon {
  background: linear-gradient(135deg, rgba(60,0,79,.1), rgba(255,102,51,.08));
}
body.template-moderno .perfil-service-card:hover .perfil-service-icon {
  background: linear-gradient(135deg, #3c004f, #ff6633);
}
body.template-moderno .property-price {
  background: linear-gradient(135deg, #3c004f, #ff6633);
}
body.template-moderno .property-filter-hero {
  background: linear-gradient(135deg, #3c004f 0%, #ff6633 100%);
}
