/* Navbar */
.bg-body-tertiary {
  background-color: rgb(241, 241, 241);
}

.navbar-brand img {
  width: 60px; /* Ancho de la imagen */
}

.foto-depto {
    width: 100%;           /* ocupa todo el ancho del contenedor */
    height: 250px;         /* altura fija para que todas queden iguales */
    object-fit: cover;     /* recorta la imagen pero mantiene proporciones */
    object-position: center; /* centra la imagen */
    border-radius: 8px;    /* opcional */
}

.iconos-tipologia {
  display: block;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
}

.iconos-tipologia img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.metro-line-icon {
  height: 20px;
}

.img-alta {
  height: 600px;
  object-fit: cover;
  width: 100%;
}

.img-baja {
  height: 296px;
  object-fit: cover;
  width: 100%;
}

/* Íconos para ficha de departamento */
.icono-ficha {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Estilos para videos en departamento arriendo */
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vide-container iframe {
  width: 80%;
  max-width: 1000px;
  height: 500px;
  border-radius: 10px;
  border: none;
}