/* =====================================================
   Public Site CSS — ImobSystem
   Paleta: #FAB710 (âmbar) · #FADD00 (amarelo) · #2C00FA (azul-violeta) · #FFFFFF
   Tipografia: Bebas Neue (títulos) · Noto Sans (corpo) · Nunito (UI/botões)
   ===================================================== */

:root {
  --primary:    #2C00FA;
  --secondary:  #FAB710;
  --accent:     #FADD00;
  --warning:    #F59E0B;
  --info:       #6366F1;
  --dark:       #1F2937;
  --light:      #F9FAFB;
  --font-body:  'Noto Sans', sans-serif;
  --font-title: 'Bebas Neue', sans-serif;
  --font-ui:    'Nunito', sans-serif;
}

/* =====================================================
   RESET / BASE
   ===================================================== */
* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.btn {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: .02em;
}

/* =====================================================
   BOOTSTRAP COLOR OVERRIDES
   ===================================================== */

/* Primary = #2C00FA (textos em destaque, bordas, links) */
:root {
  --bs-primary: #2C00FA;
  --bs-primary-rgb: 44, 0, 250;
  --bs-link-color: #2C00FA;
}
.text-primary  { color: #2C00FA !important; }
.bg-primary    { background-color: #2C00FA !important; }
.border-primary{ border-color: #2C00FA !important; }

/* btn-primary = #FAB710 (âmbar dourado) */
.btn-primary {
  background-color: #FAB710 !important;
  border-color:     #FAB710 !important;
  color: #1F2937 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #2D9C42 !important;
  border-color:     #2D9C42 !important;
  color: #1F2937 !important;
}

/* btn-outline-primary */
.btn-outline-primary {
  color: #2C00FA !important;
  border-color: #2C00FA !important;
}
.btn-outline-primary:hover {
  background-color: #2D9C42 !important;
  color: #fff !important;
}

/* primary-subtle para cards/badges */
.bg-primary-subtle  { background-color: rgba(44,0,250,.08) !important; }
.text-primary       { color: #2C00FA !important; }
.border-primary-subtle { border-color: rgba(44,0,250,.25) !important; }

#1F2937

/* btn-especial */
.btn-especial {
  background-color: #F0C662 !important;
  border-color:     #F0C662 !important;
  color: #1F2937 !important;
}
.btn-especial:hover,
.btn-especial:focus,
.btn-especial:active {
  background-color: #FAB710 !important;
  border-color:     #FAB710 !important;
  color: #1F2937 !important;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar-site {
  background: #8296E8;
  font-size: .8rem;
  font-family: var(--font-ui);
}
.topbar-site,
.topbar-site a,
.topbar-site span,
.topbar-site .text-light {
  color: #1F2937 !important;
}
.topbar-site a:hover { opacity: .7; text-decoration: none; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-brand { font-size: 1.1rem; padding-top: .25rem; padding-bottom: .25rem; }
.navbar-brand img { max-height: 56px; width: auto; }
.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: .88rem;
  font-family: var(--font-ui);
  padding: .5rem .75rem !important;
  border-radius: .4rem;
  transition: background .15s;
}
.nav-link:hover { background: var(--light); }

/* =====================================================
   HERO — SPLIT LAYOUT (esquerda branca + direita foto)
   ===================================================== */
.hero-section {
  display: flex;
  min-height: 640px;
  background: none;
  overflow: hidden;
}

/* PAINEL ESQUERDO */
.hero-left-panel {
  background: #fff;
  padding: 3.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  width: 45%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hero-left-inner { flex: 1; }

/* PAINEL DIREITO */
.hero-right-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Badge geolocalização */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #FADD00;
  border: none;
  color: #1F2937;
  border-radius: 2rem;
  padding: .35rem 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Título principal */
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;          /* Bebas Neue é bold por natureza */
  line-height: 1.05;
  color: #1F2937;
  text-transform: uppercase;
  margin: .75rem 0 0;
  letter-spacing: .03em;
}
.hero-title-highlight { color: #2D9C42; }

/* Linha dourada sob o título */
.hero-title-rule {
  width: 64px;
  height: 4px;
  background: #FAB710;
  border: none;
  opacity: 1;
  margin: 1rem 0 1.25rem;
}

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(.88rem, 1.3vw, 1rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: none;
  margin-inline: 0;
}

/* Trust badges */
.hero-trust {
  font-size: .78rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .25rem;
}

/* =====================================================
   SEARCH CARD
   ===================================================== */
.search-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid #e5e7eb;
  max-width: none;
  margin: 0;
}
.search-card-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af;
  margin-bottom: .75rem;
  font-family: var(--font-ui);
  font-weight: 700;
}

/* =====================================================
   STATS STRIP — faixa amarela abaixo do hero
   ===================================================== */
.stats-strip {
  display: block;
  background: #FADD00 !important;
}
.stats-item {
  padding: 1.5rem 1.5rem;
  border-right: 1px solid rgba(31,41,55,.15);
  text-align: center;
}
.stats-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 400;
  color: #2C00FA;
  line-height: 1;
  letter-spacing: .03em;
}
.stats-label {
  font-size: .75rem;
  color: #4b5563;
  margin-top: .35rem;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .02em;
}

/* =====================================================
   SECTION TITLE + EYEBROW
   ===================================================== */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 0;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #2C00FA;
  margin-bottom: .4rem;
}

/* =====================================================
   WHY SECTION
   ===================================================== */
.why-section { 
  background: #fff; 
}
.vantagem-card {
  background: var(--light);
  border-radius: .75rem;
  padding: 1rem;
  height: 100%;
  transition: box-shadow .2s;
}
.vantagem-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.vantagem-icon { font-size: 1.6rem; margin-bottom: .5rem; }

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state { text-align: center; padding: 3rem 1rem; }

/* =====================================================
   CREDIBILITY / QUOTE
   ===================================================== */
.credibility-section { background: var(--light); }
.credibility-quote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-family: var(--font-body);
  color: #374151;
  line-height: 1.7;
  border: none;
  padding: 0;
  margin: 0;
}
.credibility-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FAB710;
  color: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-ui);
  flex-shrink: 0;
}

/* =====================================================
   CTA WHATSAPP — fundo âmbar #FAB710
   ===================================================== */
.cta-whatsapp-section {
  background: #FFFFFF;
  padding: 3.5rem 0;
}
.cta-whatsapp-card {
  background: #FAB710;
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: none;
  box-shadow: 0 8px 40px rgba(250,183,16,.35);
}
.cta-whatsapp-eyebrow {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #1F2937;
  margin-bottom: .75rem;
}
.cta-whatsapp-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #1F2937;
  line-height: 1.15;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cta-whatsapp-sub {
  color: rgba(31,41,55,.72);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================================================
   PAGE HERO SMALL (páginas internas)
   ===================================================== */
.page-hero-small {
  /* background: linear-gradient(135deg, #1F2937 0%, #2C00FA 100%); */
  background: linear-gradient(135deg, #1F2937 0%, #2D9C42 100%);
  padding: 1rem 0;
}
.page-hero-small h1 {
  font-family: var(--font-title);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* =====================================================
   IMOVEL CARD
   ===================================================== */
.imovel-card {
  background: #fff;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.imovel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.14); }

.imovel-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}
.imovel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.imovel-card:hover .imovel-card-img img { transform: scale(1.04); }
.no-photo { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }

.imovel-card-badges { position: absolute; top: .6rem; left: .6rem; display: flex; gap: .3rem; flex-wrap: wrap; }
.imovel-card-photos { position: absolute; bottom: .5rem; right: .5rem; background: rgba(0,0,0,.55); color: #fff; padding: .15rem .5rem; border-radius: 2rem; font-size: .72rem; }

.imovel-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.imovel-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-ui);
  color: #2C00FA;
  margin: .3rem 0;
}
.imovel-card-location { font-size: .8rem; color: #6b7280; margin-bottom: .5rem; }
.imovel-card-features {
  display: flex; flex-wrap: wrap; gap: .6rem .75rem;
  font-size: .78rem; color: #6b7280; margin-top: auto; padding-top: .5rem;
}
.imovel-card-features span { display: flex; align-items: center; gap: .25rem; }

/* =====================================================
   FEATURES GRID (detalhe do imóvel)
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
}
.feature-item {
  display: flex; align-items: center; gap: .6rem;
  background: var(--light); border-radius: .5rem; padding: .65rem .85rem;
  font-size: .9rem; font-weight: 600;
}
.feature-item i { font-size: 1.3rem; }
.feature-item small { font-weight: 400; }

/* =====================================================
   CARD FINALIDADE
   ===================================================== */
.card-finalidade {
  background: #fff; border-radius: .75rem; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07); display: block;
  transition: transform .2s, box-shadow .2s;
}
.card-finalidade:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.card-finalidade-icon { font-size: 2.5rem; margin-bottom: .75rem; }

/* =====================================================
   CONTACT INFO CARDS
   ===================================================== */
.contact-info-card {
  background: var(--light); border-radius: .75rem; padding: 1.25rem;
  text-align: center;
}

/* =====================================================
   FOOTER — fundo âmbar #FAB710
   ===================================================== */
.footer-site { background: #FADD00; }

/* Forçar texto escuro sobre fundo âmbar */
.footer-site .text-white   { color: #1F2937 !important; }
.footer-site .text-muted   { color: rgba(31,41,55,.65) !important; }
.footer-site a.text-muted  { color: rgba(31,41,55,.65) !important; }
.footer-site a.text-muted:hover { color: #1F2937 !important; opacity: 1; }
.footer-site hr            { border-color: rgba(31,41,55,.2) !important; }
.footer-site .text-primary { color: #1F2937 !important; }
.footer-site .btn-outline-secondary {
  border-color: rgba(31,41,55,.3) !important;
  color: #1F2937 !important;
}
.footer-site .btn-outline-secondary:hover {
  background: rgba(31,41,55,.1) !important;
}

/* Faixa inferior do footer #FADD00 */
.footer-bottom {
  background: #8296E8;
  margin: 0 calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  padding: .75rem calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: #25D366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); color: #fff; }

/* =====================================================
   ECOTURISMO LANDING PAGE
   ===================================================== */
.eco-hero {
  background: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1800&q=80') center 55%/cover no-repeat; 
  min-height: 640px; display: flex; align-items: center; position: relative;
}
.eco-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,30,15,.92) 0%, rgba(56, 144, 112, 0.8) 100%);
  display: flex; align-items: center; width: 100%; padding: 6rem 0 5rem;
}
.eco-badge {
  display: inline-flex; align-items: center;
  background: rgba(250,221,0,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(250,221,0,.4);
  color: #FADD00; border-radius: 2rem;
  padding: .4rem 1.1rem; font-size: .82rem; font-weight: 700;
  font-family: var(--font-ui); letter-spacing: .05em;
}
.eco-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400; line-height: 1.05; color: #fff; margin: .75rem 0;
  text-transform: uppercase; letter-spacing: .04em;
}
.eco-title-highlight { color: #FADD00; }
.eco-hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  opacity: .85; color: #e2e8f0; line-height: 1.7; max-width: 700px; margin-inline: auto;
}

/* Eco strip */
.eco-strip {
  display: block;
  background: #1F2937 !important;
}
.eco-strip-item {
  padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.1); text-align: center;
}
.eco-strip-item.border-0 { border-right: none; }
.eco-strip-num  { font-family: var(--font-title); font-size: 1.7rem; font-weight: 400; color: #FADD00; line-height: 1; }
.eco-strip-label{ font-family: var(--font-ui); font-size: .75rem; color: rgba(255,255,255,.65); margin-top: .3rem; }

/* Map placeholder */
.eco-map-card { border-radius: 1rem; overflow: hidden; }
.eco-map-placeholder {
  background: linear-gradient(135deg, #1F2937 0%, #2C00FA 100%);
  padding: 3rem 2rem; text-align: center; color: #fff; border-radius: 1rem;
}
.eco-map-placeholder .bi-map-fill { font-size: 4rem; color: #FADD00; }

/* Pilar cards */
.eco-pilar-card {
  background: #fff; border-radius: .75rem; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07); height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.eco-pilar-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.eco-pilar-icon { font-size: 2rem; margin-bottom: .75rem; }

/* Form card */
.eco-form-card {
  background: var(--light); border-radius: 1rem; padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* Avatar ecoturismo */
.eco-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: #FAB710;
  border: 2px solid rgba(250,221,0,.5);
  color: #1F2937; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; font-family: var(--font-ui);
}

/* Banner Projeto Especial (home page) */
.eco {
  background: #FFFFFF;
  padding: 3.5rem 0;
}
.eco-teaser-banner {
  background: #FADD00;
  border-radius: .75rem; 
  padding: 2.5rem 3.5rem;
  border: none;
  box-shadow: 0 8px 40px rgba(250,183,16,.35);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; 
}
.eco-teaser-badge {
  background: rgba(31,41,55,.12);
  border: 1px solid rgba(31,41,55,.2);
  color: #1F2937;
  border-radius: 2rem; padding: .3rem .9rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .07em;
  white-space: nowrap; flex-shrink: 0;
  font-family: var(--font-ui);
  text-transform: uppercase;
}

/* =====================================================
   PÁGINA SOBRE
   ===================================================== */
.sobre-foto-wrapper { position: relative; max-width: 440px; }
.sobre-creci-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: #FADD00; border-radius: .75rem;
  padding: .6rem 1rem; font-size: .8rem; font-weight: 700;
  font-family: var(--font-ui);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  border: 1px solid rgba(31,41,55,.1);
  white-space: nowrap; color: #1F2937;
}
.sobre-stat-card {
  background: #fff; border-radius: .75rem; padding: 1.75rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); height: 100%;
}
.sobre-stat-card .display-6 {
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: .04em;
}
.sobre-valor-card {
  background: var(--light); border-radius: .75rem; padding: 1.5rem;
  height: 100%; transition: box-shadow .2s;
}
.sobre-valor-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.sobre-valor-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: .1rem; }

/* =====================================================
   CURSOR
   ===================================================== */
.cursor-pointer { cursor: pointer; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  /* Hero: empilha em mobile — foto acima, texto abaixo */
  .hero-section { flex-direction: column; min-height: auto; }
  .hero-left-panel { width: 100%; padding: 2.5rem 1.5rem 2rem; min-height: auto; order: 2; }
  .hero-right-panel { width: 100%; min-height: 280px; order: 1; }
  .hero-title { font-size: 2.4rem; }
}

@media (max-width: 767.98px) {
  .hero-right-panel { min-height: 220px; }
  .hero-trust { font-size: .72rem; gap: .15rem; }
  .hero-trust .mx-3 { margin-inline: .3rem !important; }
  .search-card { padding: 1rem; }
  .search-card-label { display: none; }
  .imovel-card-img { height: 170px; }
  .stats-item { border-right: none; border-bottom: 1px solid rgba(31,41,55,.12); }
  .stats-item:last-child { border-bottom: none; }
  .cta-whatsapp-card { padding: 1.5rem; text-align: center; }
  .cta-whatsapp-section { padding: 2rem 0; }
  .credibility-quote { font-size: .95rem; }
  .eco-teaser-banner { flex-direction: column; align-items: flex-start; }
}
