/* ===== Footer (Chave On Imobiliária) ===== */

:root {
  --co-bg: #0f1216;            /* fundo principal */
  --co-bg-2: #0b0e12;          /* fundo 2 / gradiente */
  --co-fg: #e8eef5;            /* texto principal */
  --co-fg-dim: #b8c2cf;        /* texto secundário */
  --co-accent: #4cc9f0;        /* acento */
  --co-border: #243042;        /* linhas/sutilezas */
  --co-glow: rgba(76, 201, 240, .25);
}

footer.bg-dark {
  background: radial-gradient(1200px 400px at 20% -10%, #122033 0%, rgba(18,32,51,0) 60%),
              linear-gradient(180deg, var(--co-bg) 0%, var(--co-bg-2) 100%);
  color: var(--co-fg);
  position: relative;
  overflow: hidden;
}

/* leve textura/ornamento com brilho */
footer.bg-dark::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 160px;
  background: radial-gradient(closest-side, var(--co-glow), transparent);
  filter: blur(30px);
  opacity: .4;
  pointer-events: none;
}

/* tipografia */
#contato h5 {
  color: var(--co-fg);
  font-weight: 700;
  letter-spacing: .2px;
}

#contato p,
#contato li,
#contato .social-name {
  color: var(--co-fg-dim);
}

/* lista de contato */
#contato ul.list-unstyled {
  margin: 0;
  padding: 0;
}

#contato ul.list-unstyled li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}

#contato ul.list-unstyled li i {
  font-size: 1.05rem;
  color: var(--co-accent);
  opacity: .9;
}

/* realce por tipo (opcional) */
#contato i.endereco { color: #4cc9f0; }
#contato i.telefones { color: #22c55e; }
#contato i.email { color: #f59e0b; }
#contato i.clock { color: #a78bfa; }

/* linha divisória */
#contato hr {
  border-color: var(--co-border) !important;
  opacity: 1;
}

/* ===== Social / Portais ===== */

.social-icons {
  gap: .75rem !important;
}

.social-icons a {
  --icon-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border: 1px solid transparent;
  border-radius: .6rem;
  color: var(--co-fg-dim);
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: all .22s ease;
  will-change: transform, box-shadow, border-color;
}

.social-icons a i {
  font-size: var(--icon-size);
  line-height: 1;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  color: var(--co-fg);
  border-color: var(--co-border);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 0 0 6px rgba(76,201,240,.08);
  outline: none;
}

/* cores sutis por canal (opcional) */
.social-icons .facebook { color: #1877f2; }
.social-icons .instagram { 
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.social-icons .vivareal { color: #00a8e8; }
.social-icons .imovelweb { color: #ff6b00; }
.social-icons .olx { color: #6e28cf; }

/* ===== Rodapé final ===== */
#contato .text-center p {
  color: var(--co-fg-dim);
  font-size: .95rem;
}

/* ===== Acessibilidade ===== */
#contato a:focus-visible {
  outline: 2px solid var(--co-accent);
  outline-offset: 2px;
  border-radius: .5rem;
}

/* ===== Responsivo ===== */
@media (max-width: 992px) {
  .social-icons a { --icon-size: 1.15rem; padding: .45rem .6rem; }
}

@media (max-width: 576px) {
  #contato .row { row-gap: 1.5rem; }
  .social-icons { justify-content: center; }
}

/* ===== Micro animações ===== */
#contato h5 .bi {
  transform: translateY(0);
  transition: transform .25s ease;
}
#contato h5:hover .bi {
  transform: translateY(-2px);
}

#contato .col p {
  transition: color .2s ease;
}
#contato .col:hover p {
  color: var(--co-fg);
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e0e0e0;
    --accent-color: #e53935; /* Cor vermelha */
    --dark-color: #121212;
    --text-light: #f5f5f5;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Navbar personalizado */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Botão do WhatsApp */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}



/* Estilo dos cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-text-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Estilo dos botões personalizados */
.btn-custom {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom:hover {
    background-color: #c62828; /* Vermelho mais escuro */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Depoimentos */
.depoimento-card {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 2rem;
}

/* Rodapé */
.main-footer {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.main-footer h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: white;
}
/* Gradiente para melhorar a leitura do texto sobre a foto */
.caption-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

/* Cart de legenda com “glassmorphism” */
.caption-card{
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 2;
  border-radius: 1rem;
  background: rgba(15,23,42,0.45);               /* slate-900 ~ vidro escuro */
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.caption-body{ padding: .9rem 1rem; color: #fff; }
.caption-title{ display: flex; align-items: center; justify-content: space-between; gap: .75rem; }

.price-badge{
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(16,185,129,.95); /* verde “success” mais vibrante */
  color: #fff; font-weight: 700; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(16,185,129,.35);
}

.specs{
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .6rem;
}
.specs .chip{
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .9rem; padding: .25rem .6rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #f8f9fa;
}

.actions{ display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .7rem; }

/* Microinterações */
.actions .btn{ transition: transform .15s ease, box-shadow .15s ease; }
.actions .btn:hover{ transform: translateY(-1px); }

/* Responsividade: enxuga no mobile */
@media (max-width: 767.98px){
  .caption-card{ left: .75rem; right: .75rem; bottom: .75rem; border-radius: .85rem; }
  .caption-body{ padding: .75rem .85rem; }
  .caption-title h5{ font-size: 1rem; }
  .price-badge{ padding: .25rem .6rem; font-size: .95rem; }
}
